fix some typos

This commit is contained in:
rvcas
2023-04-07 16:51:18 -04:00
parent d0d482b3cb
commit 1444c9328d
16 changed files with 26 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
fn substract(x, y) {
fn subtract(x, y) {
x - y
}
test flip_1() {
flip(substract)(3, 2) == -1
flip(subtract)(3, 2) == -1
}