Fix documentation of pub(crate) visibility
diff --git a/src/data.rs b/src/data.rs
index f9a7289..31eb1d1 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -134,7 +134,7 @@
pub pub_token: Token![pub],
}),
- /// A crate-level visibility: `pub(crate)`.
+ /// A crate-level visibility: `crate`.
///
/// *This type is available if Syn is built with the `"derive"` or
/// `"full"` feature.*
@@ -143,7 +143,7 @@
}),
/// A visibility level restricted to some path: `pub(self)` or
- /// `pub(super)` or `pub(in some::module)`.
+ /// `pub(super)` or `pub(crate)` or `pub(in some::module)`.
///
/// *This type is available if Syn is built with the `"derive"` or
/// `"full"` feature.*