Return/Returns consistency for the Box module

This commit is contained in:
Fábio Beirão 2023-05-26 12:11:24 +02:00
parent 698c9715af
commit 8e9569c81e
No known key found for this signature in database
GPG key ID: 13FD3A2130278AAE

View file

@ -2,7 +2,7 @@ interface Box
exposes [box, unbox]
imports []
## Allocate a value on the heap. Boxing is an expensive process as it copies
## Allocates a value on the heap. Boxing is an expensive process as it copies
## the value from the stack to the heap. This may provide a performance
## optimization for advanced use cases with large values. A platform may require
## that some values are boxed.