summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2015-03-04 11:57:23 +0600
committerDaniil Baturin <daniil@baturin.org>2015-03-04 11:57:23 +0600
commitd5abcf39153d7ea51e95af3752012e694b2dca4d (patch)
treeb94e79f929d193a98afca37d310f73d31a6348cf /src
parent56708c95bb3d0ac089b0635b6110da1d4cf4e586 (diff)
downloadvyconf-d5abcf39153d7ea51e95af3752012e694b2dca4d.tar.gz
vyconf-d5abcf39153d7ea51e95af3752012e694b2dca4d.zip
Fix typo in vylist.
Diffstat (limited to 'src')
-rw-r--r--src/vylist.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vylist.ml b/src/vylist.ml
index c7d0396..501a275 100644
--- a/src/vylist.ml
+++ b/src/vylist.ml
@@ -8,7 +8,7 @@ let rec remove p xs =
match xs with
| [] -> []
| x :: xs' -> if (p x) then xs'
- else x :: (remove p xs)
+ else x :: (remove p xs')
let rec replace p x xs=
match xs with