Skip to content

Commit

Permalink
docs(option/flat): flat is not float
Browse files Browse the repository at this point in the history
Co-authored-by: Pedro Castro <[email protected]>
  • Loading branch information
glennsl and aspeddro committed Feb 20, 2023
1 parent d45a1de commit e62168e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core__Option.resi
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ let someString: option<string> = Some("hello")
## Examples

```rescript
Option.float(Some(Some(10))) // Some(10)
Option.flat(Some(Some(10))) // Some(10)
Option.flat(Some(None)) // None
```
*/
Expand Down

0 comments on commit e62168e

Please sign in to comment.