Skip to content

Commit 1609df7

Browse files
committed
Merge pull request #33 from anjerodesu/master
Fix typo
2 parents 13d682a + 60713b6 commit 1609df7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/dep/get.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ extension Sandbox: Fetcher {
100100
func fetch(url url: String) throws -> Fetchable {
101101
let dstdir = Path.join(prefix, Package.name(forURL: url))
102102
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
104104
return RawClone(path: dstdir)
105105
}
106106

Sources/sys/TOML.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ private struct Lexer {
278278
// Numeric literals.
279279
//
280280
// 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.
282282
case let c where c.isNumberInitialChar():
283283
// Scan to the end of the number.
284284
while let c = look() where c.isNumberChar() {

0 commit comments

Comments
 (0)