Skip to content

Commit 1b2abc4

Browse files
committed
[utils] swift-xcodegen: Proofread README
1 parent f45ef52 commit 1b2abc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/swift-xcodegen/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A script for generating an Xcode project for the Swift repo, that sits on top of an existing Ninja build.
44

5-
This script is primarily focussed on providing a good editor experience for working on the Swift project; it is not designed to produce compiled products or run tests, that should be done with `ninja` and `build-script`. It can however be used to [debug executables produced by the Ninja build](#debugging).
5+
This script is primarily focussed on providing a good editor experience for working on the Swift project; it is not designed to produce compiled products or run tests, that should be done with `ninja` and `build-script`. It can, however, be used to [debug executables produced by the Ninja build](#debugging).
66

77
## Running
88

@@ -12,11 +12,11 @@ You can run using either `utils/generate-xcode` or the `swift-xcodegen` script i
1212
./swift-xcodegen <build dir>
1313
```
1414

15-
where `<build dir>` is the path to the build directory e.g `build/Ninja-RelWithDebInfoAssert`. This will by default create a `Swift.xcodeproj` in the parent directory (next to the `build` directory). Projects for LLVM, LLDB, and Clang may also be created by passing `--llvm`, `--lldb`, and `--clang` respectively. Workspaces of useful combinations will also be created (e.g Swift+LLVM, Clang+LLVM).
15+
where `<build dir>` is the path to the build directory e.g `build/Ninja-RelWithDebInfoAssert`. This will by default create a `Swift.xcodeproj` in the parent directory (next to the `build` directory). Projects for LLVM, LLDB, and Clang may also be created by passing `--llvm`, `--lldb`, and `--clang`, respectively. Workspaces of useful combinations will also be created (e.g Swift+LLVM, Clang+LLVM).
1616

1717
For the full set of options, see the [Command usage](#command-usage) below.
1818

19-
An `ALL` meta-target is created that depends on all the targets in the given project or workspace. A scheme for this target is automatically generated too (and automatic scheme generation is disabled). You can manually add individual schemes for targets you're interested in. Note however that Clang targets do not currently have dependency information.
19+
An `ALL` meta-target is created that depends on all the targets in the given project or workspace. A scheme for this target is automatically generated too (and automatic scheme generation is disabled). You can manually add individual schemes for targets you're interested in. Note, however, that Clang targets do not currently have dependency information.
2020

2121
## Debugging
2222

0 commit comments

Comments
 (0)