File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,15 @@ A *source file* is a single Swift source code file within a module
45
45
Although it's common to define individual types in separate source files,
46
46
a single source file can contain definitions for multiple types, functions, and so on.
47
47
48
- A * package* is a group of modules and source files,
49
- with boundaries that are defined by the build system.
50
- The package name isn't part of your Swift source code,
51
- but does appear in your configuration for the build system.
52
- For example, if your use Swift Package Manager to build your code,
53
- you define the package name using [ ` Package ` ] [ ] in your package manifest.
54
-
55
- [ ` Package ` ] ( https://developer.apple.com/documentation/PackageDescription/Package )
48
+ A * package* is a group of modules that you develop as a unit.
49
+ You define the modules that form a package
50
+ as part of configuring the build system you're using,
51
+ not as part of your Swift source code.
52
+ For example, if you use Swift Package Manager to build your code,
53
+ you define a package in your ` Package.swift ` file
54
+ using APIs from the [ PackageDescription] [ ] module.
55
+
56
+ [ PackageDescription] ( https://developer.apple.com/documentation/packagedescription )
56
57
57
58
## Access Levels
58
59
You can’t perform that action at this time.
0 commit comments