about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-07-14 01:03:09 +0200
committerGitHub <noreply@github.com>2023-07-14 01:03:09 +0200
commitaa2002ea0a16891a390220cc99d5fabba26bb31e (patch)
tree013652b8e2ee1c664a9502a7da802e7f58654f5b /src/doc
parent8d6d566093260f1b30c36f2b702e71efde5b3569 (diff)
parent3ce5f6eb44b31a93089db0d46d031b0bd689ba7d (diff)
downloadrust-aa2002ea0a16891a390220cc99d5fabba26bb31e.tar.gz
rust-aa2002ea0a16891a390220cc99d5fabba26bb31e.zip
Rollup merge of #113668 - kupiakos:patch-1, r=calebcartwright
Correct `the` -> `there` typo in items.md
Diffstat (limited to 'src/doc')
-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