[stdlib] remove trailing semicolon in stdlib source

This commit is contained in:
brennanMKE
2018-03-30 22:44:05 -07:00
parent a00f252ff8
commit fb2f55f558

View File

@@ -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