correct unescaped generic being parsed as an underline tag
This commit is contained in:
parent
ca5185d719
commit
a8efdd68ae
1 changed files with 1 additions and 1 deletions
|
@ -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\>
|
||||
|
|
Loading…
Add table
Reference in a new issue