Fix indenting with ==

Closes #16
This commit is contained in:
Keith Smiley
2014-08-16 13:52:10 -07:00
parent 9a31e2fbfc
commit fdb1ac8e71
3 changed files with 24 additions and 5 deletions

View File

@@ -197,7 +197,7 @@ func foo<T: Sequence>() {
init(argv: UnsafePointer<CString>, count: CInt) {
for i in 1..count {
let index = Int(i);
let index = Int(i)
let arg = String.fromCString(argv[index])
arguments.append(arg)
}
@@ -237,3 +237,12 @@ override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject!) {}
client.host = "example.com"
client.pathPrefix = "/foo/"
func foo () {
override func loadView() {
super.loadView()
if foo {
foobar
}
}
}