about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlyssa Haroldsen <kupiakos@google.com>2023-07-13 12:00:46 -0700
committerGitHub <noreply@github.com>2023-07-13 12:00:46 -0700
commit3ce5f6eb44b31a93089db0d46d031b0bd689ba7d (patch)
treea429f912d2d7e5ec81ff849b3b177c10f0523642 /src
parent1b3e68692592d71938df8e7fd8e53fbe5e7ef58c (diff)
downloadrust-3ce5f6eb44b31a93089db0d46d031b0bd689ba7d.tar.gz
rust-3ce5f6eb44b31a93089db0d46d031b0bd689ba7d.zip
Correct `the` -> `there` typo in items.md
Diffstat (limited to 'src')
-rw-r--r--src/doc/style-guide/src/items.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/style-guide/src/items.md b/src/doc/style-guide/src/items.md
index 1e0e60248bf..de31e8a8799 100644
--- a/src/doc/style-guide/src/items.md
+++ b/src/doc/style-guide/src/items.md
@@ -282,7 +282,7 @@ impl<T: Display, U: Debug> SomeType<T, U> { ...
 
 If the generics clause must be formatted across multiple lines, each parameter
 should have its own block-indented line, there should be newlines after the
-opening bracket and before the closing bracket, and the should be a trailing
+opening bracket and before the closing bracket, and there should be a trailing
 comma.
 
 ```rust