about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2024-01-20 20:06:36 +0100
committerGitHub <noreply@github.com>2024-01-20 20:06:36 +0100
commit774cd3afd5dad311f9be97f74eb6d1a89ad06d38 (patch)
tree0f29eec0623e45fc624f519121c34fbe696047ef
parentdfd62cc3af29b92586f7ad4f5d1f84523a41f5b4 (diff)
parent0e96840e7eeaabd3cced2319855893ec7e2a503d (diff)
downloadrust-774cd3afd5dad311f9be97f74eb6d1a89ad06d38.tar.gz
rust-774cd3afd5dad311f9be97f74eb6d1a89ad06d38.zip
Rollup merge of #120169 - sunrosa:patch-1, r=ChrisDenton
Spelling fix

"It's" expands to "it is". "It is use..." doesn't make sense.

"Its" is the possessive form, and the intended form here.
-rw-r--r--library/core/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/error.rs b/library/core/src/error.rs
index f1a7ad93548..ded17e69bd9 100644
--- a/library/core/src/error.rs
+++ b/library/core/src/error.rs
@@ -415,7 +415,7 @@ where
 // Request and its methods
 ///////////////////////////////////////////////////////////////////////////////
 
-/// `Request` supports generic, type-driven access to data. It's use is currently restricted to the
+/// `Request` supports generic, type-driven access to data. Its use is currently restricted to the
 /// standard library in cases where trait authors wish to allow trait implementors to share generic
 /// information across trait boundaries. The motivating and prototypical use case is
 /// `core::error::Error` which would otherwise require a method per concrete type (eg.