Skip to content

Commit

Permalink
Removed Unicode character from source file
Browse files Browse the repository at this point in the history
Unicode is discouraged according to
idris-lang#694 (comment)
  • Loading branch information
dpeteler committed Jun 13, 2014
1 parent f48942b commit 157ffad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/prelude/Prelude/Stream.idr
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ scanl f acc (x :: xs) = acc :: scanl f (f acc x) xs
||| Produce a Stream of (corecursive) right folds of tails of the given Stream
||| @ f the combining function
||| @ xs the Stream to fold up
-- Reusing the head of the corecursion in the obvious way doesnt productivity check
-- Reusing the head of the corecursion in the obvious way doesn't productivity check
scanr : (f : a -> Inf b -> b) -> (xs : Stream a) -> Stream b
scanr f (x :: Delay xs) = f x (foldr f xs) :: scanr f xs

Expand Down

0 comments on commit 157ffad

Please sign in to comment.