Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rustdoc: Document exported macros #11613

Closed
sfackler opened this issue Jan 17, 2014 · 1 comment
Closed

rustdoc: Document exported macros #11613

sfackler opened this issue Jan 17, 2014 · 1 comment

Comments

@sfackler
Copy link
Member

Now that macros can be exported across crates, it'd be nice if Rustdoc would pick up macro_rules-style macros that are exported. E.g.

/// This is a macro that foos
#[macro_export]
macro_rules! foo(
    (slow $i:ident) => (...);
    (fast $i:ident) => (...);
)

Bonus points for being able to document each pattern.

@huonw
Copy link
Member

huonw commented Jan 17, 2014

Closing as a dupe of #9954.

@huonw huonw closed this as completed Jan 17, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants