Skip to content

Commit 7d77b31

Browse files
committed
Replace U+00A0 NO-BREAK SPACE with plain spaces
1 parent 34ee75c commit 7d77b31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Foundation/NSArray.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -344,11 +344,11 @@ public class NSArray : NSObject, NSCopying, NSMutableCopying, NSSecureCoding, NS
344344

345345
public subscript (idx: Int) -> AnyObject {
346346
get {
347-
    guard idx < count && idx >= 0 else {
348-
        fatalError("\(self): Index out of bounds")
349-
    }
347+
guard idx < count && idx >= 0 else {
348+
fatalError("\(self): Index out of bounds")
349+
}
350350

351-
    return objectAtIndex(idx)
351+
return objectAtIndex(idx)
352352
}
353353
}
354354

0 commit comments

Comments
 (0)