Skip to content

Commit

Permalink
Merge pull request #11 from fegabe/updateToSwift2
Browse files Browse the repository at this point in the history
println -> print
  • Loading branch information
hpique committed Sep 23, 2015
2 parents b57f011 + 23ced8a commit 048921e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Singleton/SingletonA.swift
Expand Up @@ -13,7 +13,7 @@ class SingletonA {
static let sharedInstance: SingletonA = SingletonA()

init() {
println("AAA");
print("AAA");
}

}
2 changes: 1 addition & 1 deletion Singleton/SingletonB.swift
Expand Up @@ -18,7 +18,7 @@ class SingletonB {
}

init() {
println("BBB");
print("BBB");
}

}
2 changes: 1 addition & 1 deletion Singleton/SingletonC.swift
Expand Up @@ -22,7 +22,7 @@ class SingletonC {
}

init() {
println("CCC");
print("CCC");
}

}

0 comments on commit 048921e

Please sign in to comment.