Merge pull request #3 from phmx/patch-1

Fix a nano-typo in 04_panics.md
This commit is contained in:
Luca Palmieri 2024-05-17 13:29:53 +02:00 committed by GitHub
commit ee055245e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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. For the time being we'll stick with panics as a brutal but simple stopgap solution.
## References ## References
@ -55,4 +55,4 @@ For the time being we'll stick with panics as a brutal but simple stopgap soluti
circumstances. circumstances.
[^macro]: If it's followed by a `!`, it's a macro invocation. Think of macros as spicy functions for now. We'll [^macro]: If it's followed by a `!`, it's a macro invocation. Think of macros as spicy functions for now. We'll
cover them in more detail later in the course. cover them in more detail later in the course.