diff options
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) |