rust-unofficial / patterns

A catalogue of Rust design patterns, anti-patterns and idioms
https://rust-unofficial.github.io/patterns/
Mozilla Public License 2.0
7.98k stars 363 forks source link

Rewrite mentions of `try!` macro to use `?` operator #92

Closed kinseytamsin closed 4 years ago

kinseytamsin commented 4 years ago

The try! macro has been deprecated since Rust 1.39.0 in favor of the ? operator; update text using it to reflect this.