We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108bc0e commit 1bc3f79Copy full SHA for 1bc3f79
test/stdlib/StringAPI.swift
@@ -525,7 +525,7 @@ StringTests.test("_isIdentical(to:)") {
525
let f = String(repeating: "foo", count: 1000)
526
let g = String(repeating: "foo", count: 1000)
527
expectEqual(f, g)
528
- expectFalse(f._isIdentical(to: g)) // To large, distinct native strings
+ expectFalse(f._isIdentical(to: g)) // Two large, distinct native strings
529
expectTrue(f._isIdentical(to: f))
530
expectTrue(g._isIdentical(to: g))
531
}
0 commit comments