diff --git a/en/src/result-panic/result.md b/en/src/result-panic/result.md index 695564e..2f50a37 100644 --- a/en/src/result-panic/result.md +++ b/en/src/result-panic/result.md @@ -153,7 +153,7 @@ fn main() { ### Type alias Using `std::result::Result` everywhere is verbose and tedious, we can use alias for this purpose. -At a module level, creating aliases can be particularly helpful. Errors found in a specific module often has the same `Err` type, so a single alias can succinctly defined all associated `Results`. This is so useful even the `std` library even supplies one: [`io::Result`](https://doc.rust-lang.org/std/io/type.Result.html). +At a module level, creating aliases can be particularly helpful. Errors found in a specific module often has the same `Err` type, so a single alias can succinctly defined all associated `Results`. This is so useful even the `std` library supplies one: [`io::Result`](https://doc.rust-lang.org/std/io/type.Result.html). 6. 🌟 ```rust,editable