about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLokathor <zefria@gmail.com>2024-05-25 16:05:22 -0600
committerLokathor <zefria@gmail.com>2024-05-25 16:05:22 -0600
commit2b2f83e5ffcc01a1ab77e2384893654191df603d (patch)
tree329872eae758d6ea085301ff297c403ebd68c5a0
parent2e8f14fb371c13ee196e48caaefcfd749d04759f (diff)
downloadrust-2b2f83e5ffcc01a1ab77e2384893654191df603d.tar.gz
rust-2b2f83e5ffcc01a1ab77e2384893654191df603d.zip
github showed that weird.
-rw-r--r--library/core/src/result.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/result.rs b/library/core/src/result.rs
index b40a585699b..2954284bda7 100644
--- a/library/core/src/result.rs
+++ b/library/core/src/result.rs
@@ -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.
 //!