Skip to content

Commit

Permalink
Change app to ++ in tutorial (typo)
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Brady committed Aug 2, 2012
1 parent 617dc98 commit d4861b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/modules.tex
Expand Up @@ -24,7 +24,7 @@ \section{Modules and Namespaces}

toList : BTree a -> List a
toList Leaf = []
toList (Node l v r) = app (toList l) (v :: toList r)
toList (Node l v r) = toList l ++ (v :: toList r)

toTree : Ord a => List a -> BTree a
toTree [] = Leaf
Expand Down

0 comments on commit d4861b2

Please sign in to comment.