diff --git a/mirrord/layer/src/macros.rs b/mirrord/layer/src/macros.rs index bbc011a8d4c..f15f06f334d 100644 --- a/mirrord/layer/src/macros.rs +++ b/mirrord/layer/src/macros.rs @@ -86,7 +86,14 @@ macro_rules! replace { /// /// ```rust, no_run /// unsafe { -/// replace_with_fallback!(hook_manager, "close", close_detour, FnClose, FN_CLOSE, libc::close); +/// replace_with_fallback!( +/// hook_manager, +/// "close", +/// close_detour, +/// FnClose, +/// FN_CLOSE, +/// libc::close +/// ); /// } /// ``` #[macro_export]