diff --git a/library/std/src/error.rs b/library/std/src/error.rs index c2d30616019c7..87f213b160830 100644 --- a/library/std/src/error.rs +++ b/library/std/src/error.rs @@ -52,7 +52,7 @@ //! to convey your intent and assumptions which makes tracking down the source //! of a panic easier. `unwrap` on the other hand can still be a good fit in //! situations where you can trivially show that a piece of code will never -//! panick, such as `"127.0.0.1".parse::().unwrap()` or early +//! panic, such as `"127.0.0.1".parse::().unwrap()` or early //! prototyping. //! //! # Common Message Styles