about summary refs log tree commit diff
path: root/library/core/src/tuple.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2022-06-11 08:30:46 -0700
committerMichael Howell <michael@notriddle.com>2022-06-11 09:54:20 -0700
commit9b31323b8f784ebb8689bb11489caefadb552f60 (patch)
tree8ad3ee74ad79b6888a26cdcc425b531ef683b231 /library/core/src/tuple.rs
parent9f6dcceef0bf2f455c29e8863413604b58e2b6b5 (diff)
downloadrust-9b31323b8f784ebb8689bb11489caefadb552f60.tar.gz
rust-9b31323b8f784ebb8689bb11489caefadb552f60.zip
Fix incorrectly spelled "variadic"
Diffstat (limited to 'library/core/src/tuple.rs')
-rw-r--r--library/core/src/tuple.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/tuple.rs b/library/core/src/tuple.rs
index 9ddefc651ba..c6e3d045a78 100644
--- a/library/core/src/tuple.rs
+++ b/library/core/src/tuple.rs
@@ -105,7 +105,7 @@ macro_rules! tuple_impls {
 
 macro_rules! maybe_tuple_doc {
     ($a:ident @ #[$meta:meta] $item:item) => {
-        #[cfg_attr(not(bootstrap), doc(tuple_varadic))]
+        #[cfg_attr(not(bootstrap), doc(tuple_variadic))]
         #[doc = "This trait is implemented for tuples up to twelve items long."]
         #[$meta]
         $item