diff --git a/integrations/axum/src/lib.rs b/integrations/axum/src/lib.rs index 57e69e186..d1cf9dc50 100644 --- a/integrations/axum/src/lib.rs +++ b/integrations/axum/src/lib.rs @@ -87,9 +87,9 @@ impl ResponseParts { /// /// If you provide your own handler, you will need to provide `ResponseOptions` via context /// yourself if you want to access it via context. -/// ```rust +/// ```rust,ignore /// #[server] -/// pub async fn get_opts() -> Result<(),ServerFnError> { +/// pub async fn get_opts() -> Result<(), ServerFnError> { /// let opts = expect_context::(); /// Ok(()) /// }