From 8e79c5be5c82a375061c285b23dfa15730b62293 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Fri, 1 Mar 2024 18:39:55 -0500 Subject: [PATCH] fix: ignore as with other doctests for now --- integrations/axum/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/axum/src/lib.rs b/integrations/axum/src/lib.rs index 57e69e186b..d1cf9dc508 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(()) /// }