mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
add spaces to doc comments to format correctly when rendered
This commit is contained in:
parent
c7e46df57d
commit
d4d654f850
1 changed files with 2 additions and 2 deletions
|
@ -7,12 +7,12 @@ interface Box
|
|||
## optimization for advanced use cases with large values. A platform may require
|
||||
## that some values are boxed.
|
||||
##
|
||||
## expect Box.unbox (Box.box "Stack Faster") == "Stack Faster"
|
||||
## expect Box.unbox (Box.box "Stack Faster") == "Stack Faster"
|
||||
box : a -> Box a
|
||||
|
||||
## Returns a boxed value.
|
||||
##
|
||||
## expect Box.unbox (Box.box "Stack Faster") == "Stack Faster"
|
||||
## expect Box.unbox (Box.box "Stack Faster") == "Stack Faster"
|
||||
unbox : Box a -> a
|
||||
|
||||
# # we'd need reset/reuse for box for this to be efficient
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue