Skip to content

Commit 946eab7

Browse files
committed
Fix typos in code comments
1 parent 6168118 commit 946eab7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Scripts/BuildPhases/LintAppLocalizedStringsUsage.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Xcodeproj {
1010
/// Semantic type for strings that correspond to an object' UUID in the `pbxproj` file
1111
typealias ObjectUUID = String
1212

13-
/// Builds an `Xcodeproj` instance by parsing the an `.xcodeproj` or `pbxproj` file at the provided URL
13+
/// Builds an `Xcodeproj` instance by parsing the `.xcodeproj` or `.pbxproj` file at the provided URL.
1414
init(url: URL) throws {
1515
projectURL = url.pathExtension == "xcodeproj" ? URL(fileURLWithPath: "project.pbxproj", relativeTo: url) : url
1616
let data = try Data(contentsOf: projectURL)
@@ -19,7 +19,7 @@ class Xcodeproj {
1919
}
2020

2121
/// An internal mapping listing the parent ObjectUUID for each ObjectUUID.
22-
/// - Build by recursing top-to-bottom in the various `PBXGroup` objects of the project to visit all the children objects,
22+
/// - Built by recursing top-to-bottom in the various `PBXGroup` objects of the project to visit all the children objects,
2323
/// and storing which parent object they belong to.
2424
/// - Used by the `resolveURL` method to find the real path of a `PBXReference`, as we need to navigate from the `PBXReference` object
2525
/// up into the chain of parent `PBXGroup` containers to construct the successive relative paths of groups using `sourceTree = "<group>"`

0 commit comments

Comments
 (0)