From 408dca7241f9af843ea4a88f04a7c3008105dcbe Mon Sep 17 00:00:00 2001 From: Darius Wiles Date: Wed, 6 Sep 2023 09:47:22 -0700 Subject: [PATCH] Fix minor grammar typo --- library/core/src/error.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`]