diff --git a/src/macros-by-example.md b/src/macros-by-example.md index 5d786286bb413..37fe5e9a0bf64 100644 --- a/src/macros-by-example.md +++ b/src/macros-by-example.md @@ -310,7 +310,7 @@ when `#[macro_use]` is applied to a module. #[macro_use(lazy_static)] // Or #[macro_use] to import all macros. extern crate lazy_static; -lazy_static!{}; +lazy_static!{} // self::lazy_static!{} // Error: lazy_static is not defined in `self` ```