Skip to content

Commit 188700d

Browse files
Riandyfacebook-github-bot
authored andcommitted
Fix missing newline typo on ios docs
Summary: Missing newline in the docs is causing "rm -rf" command to get swallowed up by markdown. This diff fix that by adding a newline. Differential Revision: D63037094
1 parent 73244a9 commit 188700d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

examples/demo-apps/apple_ios/LLaMA/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ Xcode will download and cache the package on the first run, which will take some
4040

4141
Note: If you're running into any issues related to package dependencies, quit Xcode entirely, delete the whole executorch repo, clean the caches by running the command below in terminal and clone the repo again.
4242

43-
```rm -rf \
43+
```
44+
rm -rf \
4445
~/Library/org.swift.swiftpm \
4546
~/Library/Caches/org.swift.swiftpm \
4647
~/Library/Caches/com.apple.dt.Xcode \

examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ Open the project in Xcode.In Xcode, go to `File > Add Package Dependencies`. Pas
8080

8181
Note: If you're running into any issues related to package dependencies, quit Xcode entirely, delete the whole executorch repo, clean the caches by running the command below in terminal and clone the repo again.
8282

83-
```rm -rf \
83+
```
84+
rm -rf \
8485
~/Library/org.swift.swiftpm \
8586
~/Library/Caches/org.swift.swiftpm \
8687
~/Library/Caches/com.apple.dt.Xcode \

examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ Open the project in Xcode.In Xcode, go to `File > Add Package Dependencies`. Pas
8080

8181
Note: If you're running into any issues related to package dependencies, quit Xcode entirely, delete the whole executorch repo, clean the caches by running the command below in terminal and clone the repo again.
8282

83-
```rm -rf \
83+
```
84+
rm -rf \
8485
~/Library/org.swift.swiftpm \
8586
~/Library/Caches/org.swift.swiftpm \
8687
~/Library/Caches/com.apple.dt.Xcode \

0 commit comments

Comments
 (0)