From 912d716b04347ff35fa78dcd7b0567abc13d62dd Mon Sep 17 00:00:00 2001 From: sprock Date: Fri, 10 Nov 2023 02:53:46 -0700 Subject: [PATCH] Correct spelling mistake in `Position` docs (#875) The sentence in question was clearly intended to remark that the leading slash in the path is part of said path, but due to the missing "e" at the end of "Note", it (ungrammatically) says the opposite. Co-authored-by: Maeve Sproule --- url/src/slicing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url/src/slicing.rs b/url/src/slicing.rs index c061fee84..13829575d 100644 --- a/url/src/slicing.rs +++ b/url/src/slicing.rs @@ -93,7 +93,7 @@ fn test_count_digits() { /// /// The end of a component and the start of the next are either the same or separate /// by a delimiter. -/// (Not that the initial `/` of a path is considered part of the path here, not a delimiter.) +/// (Note that the initial `/` of a path is considered part of the path here, not a delimiter.) /// For example, `&url[..BeforeFragment]` would include a `#` delimiter (if present in `url`), /// so `&url[..AfterQuery]` might be desired instead. ///