diff options
Diffstat (limited to 'mingling_macros/src/node.rs')
| -rw-r--r-- | mingling_macros/src/node.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mingling_macros/src/node.rs b/mingling_macros/src/node.rs index 3d9473f..e56f14b 100644 --- a/mingling_macros/src/node.rs +++ b/mingling_macros/src/node.rs @@ -23,16 +23,6 @@ impl Parse for NodeInput { } } -/// Implementation of the `node` procedural macro -/// -/// # Examples -/// -/// ```ignore -/// use mingling_macros::node; -/// -/// // Creates: Node::default().join("root").join("subcommand").join("action") -/// let node = node!("root.subcommand.action"); -/// ``` pub fn node(input: TokenStream) -> TokenStream { // Parse the input as a string literal let input_parsed = syn::parse_macro_input!(input as NodeInput); |
