1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-04 09:49:46 +02:00

Fix a typo in result.md

"have already see" -> "have already seen"
This commit is contained in:
Arman Yessenamanov 2023-01-05 14:41:40 +06:00 committed by GitHub
parent 8feb6b4ad4
commit e1c670c4a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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