File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ extension Sandbox: Fetcher {
100
100
func fetch( url url: String ) throws -> Fetchable {
101
101
let dstdir = Path . join ( prefix, Package . name ( forURL: url) )
102
102
if let repo = Git . Repo ( root: dstdir) where repo. origin == url {
103
- //TODO need to canolicanize the URL need URL struct
103
+ //TODO need to canonicalize the URL need URL struct
104
104
return RawClone ( path: dstdir)
105
105
}
106
106
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ private struct Lexer {
278
278
// Numeric literals.
279
279
//
280
280
// NOTE: It is important we parse this ahead of identifiers, as
281
- // numbers are valid identifiers but should be reconfigzed as such.
281
+ // numbers are valid identifiers but should be reconfigured as such.
282
282
case let c where c. isNumberInitialChar ( ) :
283
283
// Scan to the end of the number.
284
284
while let c = look ( ) where c. isNumberChar ( ) {
You can’t perform that action at this time.
0 commit comments