correct unescaped generic being parsed as an underline tag

This commit is contained in:
Rowan 2025-03-31 16:17:49 -05:00
parent ca5185d719
commit a8efdd68ae

View file

@ -57,7 +57,7 @@ Represents a value which may not exist.
> Option.zero\<a\>(value: a) -> Option\<a\>
##### chain :: Option m => m a ~> (a -> m b) -> m b
> Option\<T\>.chain\<U\>(fn: (value: T) -> Option<U>) -> Option\<U\>
> Option\<T\>.chain\<U\>(fn: (value: T) -> Option\<U\>) -> Option\<U\>
##### map :: Option f => f a ~> (a -> b) -> f b
> Option\<T\>.map\<U\>(fn: (value: T) -> U) -> Option\<U\>