Fixed README

This commit is contained in:
Dmitry Boulytchev 2018-11-07 15:05:01 +03:00
parent 8917ae20e7
commit d575f2ca15
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
fun insert (tree, value) {
case tree of
`Empty -> return `Node (value, `Empty, `Empty)
`Empty -> return `Node (value, `Empty, `Empty)
| `Node (x, left, right) ->
if x > value
then return `Node (x, insert (left, value), right)