about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDarius Wiles <github@dariuswiles.com>2023-09-06 09:47:22 -0700
committerGitHub <noreply@github.com>2023-09-06 09:47:22 -0700
commit408dca7241f9af843ea4a88f04a7c3008105dcbe (patch)
tree22e2ac91ad5a599637cea6168f0f7e50a7b502a2
parenta0c28cd9dc99d9acb015d06f6b27c640adad3550 (diff)
downloadrust-408dca7241f9af843ea4a88f04a7c3008105dcbe.tar.gz
rust-408dca7241f9af843ea4a88f04a7c3008105dcbe.zip
Fix minor grammar typo
-rw-r--r--library/core/src/error.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/error.md b/library/core/src/error.md
index 7771b8adc92..a5deb71e6b8 100644
--- a/library/core/src/error.md
+++ b/library/core/src/error.md
@@ -37,7 +37,7 @@ responsibilities they cover:
 The panic and error systems are not entirely distinct. Often times errors
 that are anticipated runtime failures in an API might instead represent bugs
 to a caller. For these situations the standard library provides APIs for
-constructing panics with an `Error` as it's source.
+constructing panics with an `Error` as its source.
 
 * [`Result::unwrap`]
 * [`Result::expect`]