Revert 0.7.6 code for 0.7.5 re-release

This commit is contained in:
Christoffer Lerno
2025-09-05 18:41:41 +02:00
parent c375aef9a3
commit d1349c9cfb
63 changed files with 796 additions and 1148 deletions

View File

@@ -273,7 +273,7 @@ fn void contains_char()
assert(!test.contains_char('x'));
}
fn void test_base_13_conversion()
fn void test_base_13_convesion()
{
assert("13".to_long(13)!! == 13 + 3);
assert("1a".to_long(13)!! == 13 + 10);
@@ -382,4 +382,4 @@ fn void test_snake_pascal_self_modify()
s2.convert_snake_to_pascal();
test::eq(s2, s[1]);
}
}
}