@@ -167,9 +167,9 @@ let package = Package(
167167```
168168
169169The ` pkgConfig ` parameter helps SwiftPM in figuring out the include and library
170- search paths for the system library. Note: If you don't want to use pkgConfig
171- paramater you can pass the path to directory containing library using
172- commandline when building your app:
170+ search paths for the system library. Note: If you don't want to use the ` pkgConfig `
171+ parameter you can pass the path of a directory containing the library using the
172+ ` -L ` flag in commandline when building your app:
173173
174174 example$ swift build -Xlinker -L/usr/local/lib/
175175
@@ -472,7 +472,7 @@ the exact sources in this directory to build, regardless of its state, git
472472repository status, tags, or the tag desired by dependency resolution. In other
473473words, this will _ just build_ against the sources that are present. When an
474474editable package is present, it will be used to satisfy all instances of that
475- package in the depencency graph. It is possible to edit all, some, or none of
475+ package in the dependency graph. It is possible to edit all, some, or none of
476476the packages in a dependency graph, without restriction.
477477
478478Editable packages are best used to do experimentation with dependency code or
@@ -487,11 +487,11 @@ put the dependency Foo in `Packages/` directory.
487487 $ swift package edit Foo --revision 969c6a9
488488
489489This is similar to previous version except that the Package Manager will leave
490- the dependency at a detched HEAD on the specified revision.
490+ the dependency at a detached HEAD on the specified revision.
491491
492492Note: It is necessary to provide either a branch or revision option. The
493493rationale here is that checking out the currently resolved version would leave
494- the repository on a detached HEAD, which is confusing. Explict options makes
494+ the repository on a detached HEAD, which is confusing. Explicit options makes
495495the action predictable for user.
496496
497497Once a package is in an editable state, you can navigate to the directory
0 commit comments