From 7600ada9a9321103a9327f820d54ee2ef8d15d20 Mon Sep 17 00:00:00 2001 From: Riandy Riandy Date: Thu, 19 Sep 2024 13:56:50 -0700 Subject: [PATCH] Fix missing newline typo on ios docs (#5491) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/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 --- examples/demo-apps/apple_ios/LLaMA/README.md | 3 ++- .../demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md | 3 ++- .../demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/examples/demo-apps/apple_ios/LLaMA/README.md b/examples/demo-apps/apple_ios/LLaMA/README.md index 3f3214e5b49..bbf8572a38a 100644 --- a/examples/demo-apps/apple_ios/LLaMA/README.md +++ b/examples/demo-apps/apple_ios/LLaMA/README.md @@ -40,7 +40,8 @@ Xcode will download and cache the package on the first run, which will take some 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. -```rm -rf \ +``` +rm -rf \ ~/Library/org.swift.swiftpm \ ~/Library/Caches/org.swift.swiftpm \ ~/Library/Caches/com.apple.dt.Xcode \ diff --git a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md index c327e2175fd..6b90da04671 100644 --- a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md +++ b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/mps_README.md @@ -80,7 +80,8 @@ Open the project in Xcode.In Xcode, go to `File > Add Package Dependencies`. Pas 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. -```rm -rf \ +``` +rm -rf \ ~/Library/org.swift.swiftpm \ ~/Library/Caches/org.swift.swiftpm \ ~/Library/Caches/com.apple.dt.Xcode \ diff --git a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md index cf4b931cf1b..f4f8a5cf17e 100644 --- a/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md +++ b/examples/demo-apps/apple_ios/LLaMA/docs/delegates/xnnpack_README.md @@ -80,7 +80,8 @@ Open the project in Xcode.In Xcode, go to `File > Add Package Dependencies`. Pas 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. -```rm -rf \ +``` +rm -rf \ ~/Library/org.swift.swiftpm \ ~/Library/Caches/org.swift.swiftpm \ ~/Library/Caches/com.apple.dt.Xcode \