1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-04 11:39:42 +02:00

Merge pull request #114 from yesenarman/patch-2

Fix a typo in `result.md`
This commit is contained in:
Andrew Walbran 2023-01-05 08:47:44 +00:00 committed by GitHub
commit 34f28cd4a0
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