Fix a nano-typo in 04_panics.md

This commit is contained in:
Maxim Philippov
2024-05-17 10:32:16 +02:00
committed by GitHub
parent d698ccdc1e
commit 69e7b28097

View File

@@ -38,7 +38,7 @@ fn main() {
}
```
There are other mechanism to work with recoverable errors in Rust, which [we'll cover later](../05_ticket_v2/06_fallibility).
There are other mechanisms to work with recoverable errors in Rust, which [we'll cover later](../05_ticket_v2/06_fallibility).
For the time being we'll stick with panics as a brutal but simple stopgap solution.
## References