github showed that weird. · rust-lang/rust@2b2f83e

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

//! Error handling with the `Result` type.

22

//!

33

//! [`Result<T, E>`][`Result`] is the type used for returning and propagating

4-

//! errors. It is an enum with the variants, [`Ok(T)`], representing success and

4+

//! errors. It is an enum with the variants, [`Ok(T)`], representing

55

//! success and containing a value, and [`Err(E)`], representing error

66

//! and containing an error value.

77

//!