diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/bool.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/bool.gleam b/src/gleam/bool.gleam index adf1fd8..0671c03 100644 --- a/src/gleam/bool.gleam +++ b/src/gleam/bool.gleam @@ -361,7 +361,7 @@ pub fn to_string(bool: Bool) -> String { /// /// Note that unlike in procedural languages the `return` value is evaluated /// even when the predicate is `False`, so it is advisable not to perform -/// expensive computation there. +/// expensive computation nor side-effects there. /// /// /// ## Examples |