Skip to content

Commit d08db62

Browse files
authored
Fix indenting
1 parent 8c38626 commit d08db62

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Foundation/NSError.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,9 @@ extension CustomNSError where Self: RawRepresentable, Self.RawValue: SignedInteg
298298
}
299299

300300
// conflict resolution
301-
var _code: Int {
302-
return errorCode
303-
}
301+
public var _code: Int {
302+
return errorCode
303+
}
304304
}
305305

306306
extension CustomNSError where Self: RawRepresentable, Self.RawValue: UnsignedInteger {
@@ -310,9 +310,9 @@ extension CustomNSError where Self: RawRepresentable, Self.RawValue: UnsignedInt
310310
}
311311

312312
// conflict resolution
313-
var _code: Int {
314-
return errorCode
315-
}
313+
public var _code: Int {
314+
return errorCode
315+
}
316316
}
317317

318318
public extension Error where Self : CustomNSError {

0 commit comments

Comments
 (0)