these god damb backslashes are everywhere

This commit is contained in:
Rowan 2025-03-31 20:50:08 -05:00
parent 19826ab203
commit b271ef2549

View file

@ -55,7 +55,7 @@ Represents a value which may not exist.
##### of :: Option f => a -> f a ##### of :: Option f => a -> f a
> Option.of\<a\>(value: a) -> Option\<a\> > Option.of\<a\>(value: a) -> Option\<a\>
Creates a new `Some\<T\>` from `T` Creates a new `Some<T>` from `T`
```js ```js
const some = Option.of(1) // Some<number>(1) const some = Option.of(1) // Some<number>(1)