1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix typos/grammar and chmod u+x v_script.vsh (#8304)

This commit is contained in:
Jordan Bonecutter
2021-01-24 01:15:11 -08:00
committed by GitHub
parent 2238bf9a83
commit 1c8c3a109d
3 changed files with 8 additions and 8 deletions

View File

@ -62,7 +62,7 @@ fn min(tree Tree) f64 {
}
}
// delete a value in BST (if nonexist do nothing)
// delete a value in BST (if nonexistant do nothing)
fn delete(tree Tree, x f64) Tree {
match tree {
Empty { return tree }