chore: add trailing period to "8-bit clean" comments across string test files
Add a period at the end of the "// 8-bit clean" comment in 12 string test files (concatenation, contains, count, ends_with, equality, index_of, iterate, iterator_value, join, starts_with, subscript, to_string) to make the comment grammatically consistent with other comments in the test suite.
This commit is contained in:
@@ -8,7 +8,7 @@ IO.print("abcd".startsWith("")) // expect: true
|
||||
IO.print("søméthîng".startsWith("sømé")) // expect: true
|
||||
IO.print("søméthîng".startsWith("some")) // expect: false
|
||||
|
||||
// 8-bit clean
|
||||
// 8-bit clean.
|
||||
IO.print("a\0b\0c".startsWith("a")) // expect: true
|
||||
IO.print("a\0b\0c".startsWith("a\0")) // expect: true
|
||||
IO.print("a\0b\0c".startsWith("b\0")) // expect: false
|
||||
|
||||
Reference in New Issue
Block a user