about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/auxiliary
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2023-04-11 15:31:08 +0200
committerPhilipp Krones <hello@philkrones.com>2023-04-11 15:31:08 +0200
commit0ca8ae5edd730d3c17b3f839dcff9aa906aa8c19 (patch)
treed4de99e1486055040888a6096e95a87e9c44f6d0 /src/tools/clippy/tests/ui/auxiliary
parentdfe024e1041d1cba1d3191024de3b7128c6734e6 (diff)
parent83e42a2337dadac915c956d125f1d69132f36425 (diff)
downloadrust-0ca8ae5edd730d3c17b3f839dcff9aa906aa8c19.tar.gz
rust-0ca8ae5edd730d3c17b3f839dcff9aa906aa8c19.zip
Merge commit '83e42a2337dadac915c956d125f1d69132f36425' into clippyup
Diffstat (limited to 'src/tools/clippy/tests/ui/auxiliary')
-rw-r--r--src/tools/clippy/tests/ui/auxiliary/proc_macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/auxiliary/proc_macros.rs b/src/tools/clippy/tests/ui/auxiliary/proc_macros.rs
index 325be83a0d7..3d5beab1eff 100644
--- a/src/tools/clippy/tests/ui/auxiliary/proc_macros.rs
+++ b/src/tools/clippy/tests/ui/auxiliary/proc_macros.rs
@@ -63,7 +63,7 @@ fn group_with_span(delimiter: Delimiter, stream: TokenStream, span: Span) -> Gro
 /// Token used to escape the following token from the macro's span rules.
 const ESCAPE_CHAR: char = '$';
 
-/// Takes a single token followed by a sequence tokens. Returns the sequence of tokens with their
+/// Takes a single token followed by a sequence of tokens. Returns the sequence of tokens with their
 /// span set to that of the first token. Tokens may be escaped with either `#ident` or `#(tokens)`.
 #[proc_macro]
 pub fn with_span(input: TokenStream) -> TokenStream {