louthy / csharp-monad

Library of monads for C#
MIT License
464 stars 53 forks source link

AsEnumberableInfinte - a typo? #9

Closed orthoxerox closed 9 years ago

orthoxerox commented 9 years ago

Should it be called AsEnumerableInfinite instead?

ApocalypticOctopus commented 9 years ago

Good catch. Output from grep -r "Infinte" .:

./CSharpMonad/src/EitherLazy.cs:        public static IEnumerable<R> AsEnumerableInfinte<L, R>(this Either<L, R> self)
./CSharpMonad/src/EitherStrict.cs:        public IEnumerable<R> AsEnumerableInfinte()
./CSharpMonad/src/option-lazy/Option.cs:        public static IEnumerable<T> AsEnumerableInfinte<T>(this Option<T> self)
./CSharpMonad/src/option-strict/OptionStrict.cs:        public IEnumerable<T> AsEnumerableInfinte()
louthy commented 9 years ago

Fixed