Skip to content

Commit 1bc3f79

Browse files
authored
[test][NFC] Fix typo
1 parent 108bc0e commit 1bc3f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/stdlib/StringAPI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ StringTests.test("_isIdentical(to:)") {
525525
let f = String(repeating: "foo", count: 1000)
526526
let g = String(repeating: "foo", count: 1000)
527527
expectEqual(f, g)
528-
expectFalse(f._isIdentical(to: g)) // To large, distinct native strings
528+
expectFalse(f._isIdentical(to: g)) // Two large, distinct native strings
529529
expectTrue(f._isIdentical(to: f))
530530
expectTrue(g._isIdentical(to: g))
531531
}

0 commit comments

Comments
 (0)