From 3f0eacdc4a7bccec31a296ab893024af39636da3 Mon Sep 17 00:00:00 2001 From: Matias Kinnunen Date: Thu, 6 Jun 2024 13:11:12 +0300 Subject: Hyphenate compound words --- src/content/chapter4_standard_library/lesson02_result_module/en.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/content/chapter4_standard_library') diff --git a/src/content/chapter4_standard_library/lesson02_result_module/en.html b/src/content/chapter4_standard_library/lesson02_result_module/en.html index 0760145..c39a0b1 100644 --- a/src/content/chapter4_standard_library/lesson02_result_module/en.html +++ b/src/content/chapter4_standard_library/lesson02_result_module/en.html @@ -20,7 +20,7 @@ try - runs a result returning function on the value held within an Ok of a result. + runs a result-returning function on the value held within an Ok of a result. If the result is an error then the function is not called. This is useful for chaining together multiple function calls that can fail, one after the other, stopping at the first error. @@ -36,5 +36,5 @@

Result functions are often used with pipelines to chain together multiple - calls to result returning functions. + calls to result-returning functions.

-- cgit v1.2.3