Link to Token! macro
diff --git a/src/token.rs b/src/token.rs
index d47bfa6..685fcd1 100644
--- a/src/token.rs
+++ b/src/token.rs
@@ -122,6 +122,11 @@
         #[cfg_attr(feature = "clone-impls", derive(Copy, Clone))]
         #[derive(Default)]
         #[$doc]
+        ///
+        /// Don't try to remember the name of this type -- use the [`Token!`]
+        /// macro instead.
+        ///
+        /// [`Token!`]: index.html
         pub struct $name(pub [Span; $len]);
 
         impl $name {
@@ -179,6 +184,11 @@
         #[cfg_attr(feature = "clone-impls", derive(Copy, Clone))]
         #[derive(Default)]
         #[$doc]
+        ///
+        /// Don't try to remember the name of this type -- use the [`Token!`]
+        /// macro instead.
+        ///
+        /// [`Token!`]: index.html
         pub struct $name(pub Span);
 
         #[cfg(feature = "extra-traits")]