Provide parse_quote whether or not printing is enabled
diff --git a/src/lib.rs b/src/lib.rs
index 37526a2..935c0cb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -386,7 +386,7 @@
 mod tt;
 
 // Not public API except the `parse_quote!` macro.
-#[cfg(all(feature = "parsing", feature = "printing"))]
+#[cfg(feature = "parsing")]
 #[doc(hidden)]
 pub mod parse_quote;
 
diff --git a/src/parse_quote.rs b/src/parse_quote.rs
index 7c93110..dbe0e06 100644
--- a/src/parse_quote.rs
+++ b/src/parse_quote.rs
@@ -29,8 +29,9 @@
 /// }
 /// ```
 ///
-/// *This macro is available if Syn is built with both the `"parsing"` and
-/// `"printing"` features.*
+/// *This macro is available if Syn is built with the `"parsing"` feature,
+/// although interpolation of syntax tree nodes into the quoted tokens is only
+/// supported if Syn is built with the `"printing"` feature as well.*
 ///
 /// # Example
 ///