github showed that weird.

This commit is contained in:
Lokathor 2024-05-25 16:05:22 -06:00
parent 2e8f14fb37
commit 2b2f83e5ff

View File

@ -1,7 +1,7 @@
//! Error handling with the `Result` type.
//!
//! [`Result<T, E>`][`Result`] is the type used for returning and propagating
//! errors. It is an enum with the variants, [`Ok(T)`], representing success and
//! errors. It is an enum with the variants, [`Ok(T)`], representing
//! success and containing a value, and [`Err(E)`], representing error
//! and containing an error value.
//!