Renamed String.ord_at to unicode_at

This commit is contained in:
Yuri Roubinsky 2020-11-23 14:47:11 +03:00
parent fa498f6105
commit 38a5d22079
5 changed files with 18 additions and 18 deletions

View file

@ -266,7 +266,7 @@ TEST_CASE("[String] Operator []") {
a[6] = 'C';
CHECK(a == "Sugar Cane");
CHECK(a[1] == 'u');
CHECK(a.ord_at(1) == 'u');
CHECK(a.unicode_at(1) == 'u');
}
TEST_CASE("[String] Case function test") {