1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-26 18:51:00 +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

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};