Function to peek any ident
diff --git a/src/parse.rs b/src/parse.rs
index 36f1caf..e651d15 100644
--- a/src/parse.rs
+++ b/src/parse.rs
@@ -469,7 +469,8 @@
     ///
     /// - `input.peek(Token![struct])`
     /// - `input.peek(Token![==])`
-    /// - `input.peek(Ident)`
+    /// - `input.peek(Ident)` *(does not accept keywords)*
+    /// - `input.peek(Ident::peek_any)`
     /// - `input.peek(Lifetime)`
     /// - `input.peek(token::Brace)`
     ///