Skip to content

Commit 9a29b22

Browse files
committed
Fix comment
1 parent fc89174 commit 9a29b22

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Sources/Xcodeproj/generate().swift

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,16 @@ public struct XcodeprojOptions {
3838
}
3939
}
4040

41+
// Determine the path of the .xcodeproj wrapper directory.
4142
public func buildXcodeprojPath(outputDir: AbsolutePath, projectName: String) -> AbsolutePath {
42-
// Determine the path of the .xcodeproj wrapper directory.
4343
let xcodeprojName = "\(projectName).xcodeproj"
4444
return outputDir.appending(RelativePath(xcodeprojName))
4545
}
4646

4747
/// Generates an Xcode project and all needed support files. The .xcodeproj
48-
/// wrapper directory is created in the path specified by `outputDir`, basing
49-
/// the file name on the project name `projectName`. Returns the path of the
50-
/// generated project. All ancillary files will be generated inside of the
51-
/// .xcodeproj wrapper directory.
48+
/// wrapper directory is created to the path specified by `xcodeprojPath`
49+
/// Returns the path of the generated project. All ancillary files will
50+
/// be generated inside of the .xcodeproj wrapper directory.
5251
@discardableResult
5352
public func generate(
5453
projectName: String,

0 commit comments

Comments
 (0)