We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34b8739 commit 1172238Copy full SHA for 1172238
src/macros.rs
@@ -89,7 +89,7 @@ macro_rules! closure (
89
/// // will use &[u8] as input type (use this if the compiler
90
/// // complains about lifetime issues
91
/// named!(my_function<&[u8]>, tag!("abcd"));
92
-/// // prefix them with 'pub' to make the functions public
+/// //prefix them with 'pub' to make the functions public
93
/// named!(pub my_function, tag!("abcd"));
94
/// // prefix them with 'pub(crate)' to make the functions public within the crate
95
/// named!(pub(crate) my_function, tag!("abcd"));
0 commit comments