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.
2 parents 820c5ab + 6cb392c commit 54ed43eCopy full SHA for 54ed43e
src/rust-2018/macros/macro-changes.md
@@ -191,7 +191,7 @@ macro_rules! warn {
191
192
So the code knows to look for any macros used locally. But wait - this won't compile, because we
193
use the `format_args!` macro that isn't in our local crate (hence the convoluted example). The
194
-solution is to add a level of indirection: we crate a macro that wraps `format_args`, but is local
+solution is to add a level of indirection: we create a macro that wraps `format_args`, but is local
195
to our crate. That way everything works in both editions (sadly we have to pollute the global
196
namespace a bit, but that's ok).
197
0 commit comments