diff options
author | Daniil Baturin <daniil@baturin.org> | 2015-03-04 12:00:37 +0600 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2015-03-04 12:00:37 +0600 |
commit | 5c19f3ef3e33ee75359b7ce9f57a678eea17b086 (patch) | |
tree | 37eea89c205c5b487fc43784174e94b2639a4fb9 /src | |
parent | d5abcf39153d7ea51e95af3752012e694b2dca4d (diff) | |
download | vyconf-5c19f3ef3e33ee75359b7ce9f57a678eea17b086.tar.gz vyconf-5c19f3ef3e33ee75359b7ce9f57a678eea17b086.zip |
Fix formatting in vylist.
Diffstat (limited to 'src')
-rw-r--r-- | src/vylist.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vylist.ml b/src/vylist.ml index 501a275..c6a1044 100644 --- a/src/vylist.ml +++ b/src/vylist.ml @@ -10,7 +10,7 @@ let rec remove p xs = | x :: xs' -> if (p x) then xs' else x :: (remove p xs') -let rec replace p x xs= +let rec replace p x xs = match xs with | [] -> [] | x' :: xs' -> if (p x') then x :: xs' |