github showed that weird. · model-checking/verify-rust-std@3b77f19 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Commit 3b77f19

github showed that weird.

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1 1 //! Error handling with the `Result` type.
2 2 //!
3 3 //! [`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
5 5 //! success and containing a value, and [`Err(E)`], representing error
6 6 //! and containing an error value.
7 7 //!