diff options
Diffstat (limited to 'lib/iStream.ml')
| -rw-r--r-- | lib/iStream.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/iStream.ml b/lib/iStream.ml index 065155f081..da54d9f7b8 100644 --- a/lib/iStream.ml +++ b/lib/iStream.ml @@ -26,7 +26,7 @@ let rec force s = match Lazy.force s with let force s = force s; s -let rec is_empty s = match Lazy.force s with +let is_empty s = match Lazy.force s with | Nil -> true | Cons (_, _) -> false |
