mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[stdlib] remove trailing semicolon in stdlib source
This commit is contained in:
@@ -1013,7 +1013,7 @@ open class JSONDecoder {
|
||||
// Find the last non-underscore character
|
||||
var lastNonUnderscore = stringKey.index(before: stringKey.endIndex)
|
||||
while lastNonUnderscore > firstNonUnderscore && stringKey[lastNonUnderscore] == "_" {
|
||||
stringKey.formIndex(before: &lastNonUnderscore);
|
||||
stringKey.formIndex(before: &lastNonUnderscore)
|
||||
}
|
||||
|
||||
let keyRange = firstNonUnderscore...lastNonUnderscore
|
||||
|
||||
Reference in New Issue
Block a user