diff options
author | inoas <mail@inoas.com> | 2023-04-17 17:33:06 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-04-19 08:21:15 +0100 |
commit | 362ba0c44208de380495c8f98e9904094f34e30c (patch) | |
tree | 190ef6e780e19dcbf67719481324a003181be2cb /src | |
parent | df2e0d8074c722d84ac3c870d5122b3897a25b96 (diff) | |
download | gleam_stdlib-362ba0c44208de380495c8f98e9904094f34e30c.tar.gz gleam_stdlib-362ba0c44208de380495c8f98e9904094f34e30c.zip |
Update src/gleam/result.gleam
Co-authored-by: Louis Pilfold <louis@lpil.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/result.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/result.gleam b/src/gleam/result.gleam index 3bc1884..402886b 100644 --- a/src/gleam/result.gleam +++ b/src/gleam/result.gleam @@ -166,7 +166,7 @@ pub fn try( } } -/// DEPRECATED: Use `result.try` instead. +/// An alias for `try`. See the documentation for that function for more information. /// pub fn then(result, fun) { try(result, fun) |