Skip to content
forked from rust-lang/rust
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3b77f19

Browse files
committedMay 25, 2024
github showed that weird.
1 parent 65726c0 commit 3b77f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/src/result.rs

+1-1
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
//!

0 commit comments

Comments
 (0)
Failed to load comments.