]> git.lizzy.rs Git - rust.git/commitdiff
Remove documentation about proc_macro being bare-bones
authorDavid Tolnay <dtolnay@gmail.com>
Sun, 9 Sep 2018 16:56:14 +0000 (09:56 -0700)
committerDavid Tolnay <dtolnay@gmail.com>
Sun, 9 Sep 2018 16:56:14 +0000 (09:56 -0700)
src/libproc_macro/lib.rs

index d4737052875b6f75840743be10d44e93c1943b3e..1de9cd35442995ae618b1b4d630d965358751546 100644 (file)
 //! function-like macros `#[proc_macro]`, macro attributes `#[proc_macro_attribute]` and
 //! custom derive attributes`#[proc_macro_derive]`.
 //!
-//! Note that this crate is intentionally bare-bones currently.
-//! This functionality is intended to be expanded over time as more surface
-//! area for macro authors is stabilized.
-//!
 //! See [the book](../book/first-edition/procedural-macros.html) for more.
 
 #![stable(feature = "proc_macro_lib", since = "1.15.0")]
@@ -73,9 +69,6 @@
 ///
 /// This is both the input and output of `#[proc_macro]`, `#[proc_macro_attribute]`
 /// and `#[proc_macro_derive]` definitions.
-///
-/// The API of this type is intentionally bare-bones, but it'll be expanded over
-/// time!
 #[stable(feature = "proc_macro_lib", since = "1.15.0")]
 #[derive(Clone)]
 pub struct TokenStream(tokenstream::TokenStream);