1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-15 06:20:32 +02:00

Fix typo in try-operator.md (#916)

This commit is contained in:
Martin Geisler 2023-07-06 16:25:37 +02:00 committed by GitHub
parent 02359573a4
commit bd98a829c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ into the much simpler
some_expression?
```
We can use this to simplify our error handing code:
We can use this to simplify our error handling code:
```rust,editable
use std::{fs, io};