about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Jensen <jonathan.obsidion@gmail.com>2024-03-12 13:35:14 +0100
committerJonathan Jensen <jonathan.obsidion@gmail.com>2024-03-12 13:35:14 +0100
commit34e59f49d5ef9742e69c421207a53163618eeb1b (patch)
treea75f76451c3c89d717b1b43d250cf7de846e7c5c
parent5b7343b96681c93f6fe752b46d9427f9dee8f94b (diff)
Fix typo in lib.rs of proc_macro
-rw-r--r--library/proc_macro/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/proc_macro/src/lib.rs b/library/proc_macro/src/lib.rs
index 610966625b5..e04bf69ef51 100644
--- a/library/proc_macro/src/lib.rs
+++ b/library/proc_macro/src/lib.rs
@@ -73,7 +73,7 @@ pub fn is_available() -> bool {
 
 /// The main type provided by this crate, representing an abstract stream of
 /// tokens, or, more specifically, a sequence of token trees.
-/// The type provide interfaces for iterating over those token trees and, conversely,
+/// The type provides interfaces for iterating over those token trees and, conversely,
 /// collecting a number of token trees into one stream.
 ///
 /// This is both the input and output of `#[proc_macro]`, `#[proc_macro_attribute]`