From e1c670c4a80f420118f1d9235ed308ab1553c9bd Mon Sep 17 00:00:00 2001 From: Arman Yessenamanov Date: Thu, 5 Jan 2023 14:41:40 +0600 Subject: [PATCH] Fix a typo in `result.md` "have already see" -> "have already seen" --- src/error-handling/result.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error-handling/result.md b/src/error-handling/result.md index 4daa155a..9f6bf2de 100644 --- a/src/error-handling/result.md +++ b/src/error-handling/result.md @@ -1,6 +1,6 @@ # Structured Error Handling with `Result` -We have already see the `Result` enum. This is used pervasively when errors are +We have already seen the `Result` enum. This is used pervasively when errors are expected as part of normal operation: ```rust