Skip to content

Commit 7600ada

Browse files
Riandyfacebook-github-bot
authored andcommitted
Fix missing newline typo on ios docs (#5491)
Summary: Pull Request resolved: #5491 Missing newline in the docs is causing "rm -rf" command to get swallowed up by markdown. This diff fix that by adding a newline. Reviewed By: kirklandsign Differential Revision: D63037094
1 parent 16673f9 commit 7600ada

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)