fix: ignore as with other doctests for now

This commit is contained in:
Greg Johnston 2024-03-01 18:39:55 -05:00
parent f70ebc1289
commit 8e79c5be5c
1 changed files with 2 additions and 2 deletions

View File

@ -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::<leptos_axum::ResponseOptions>();
/// Ok(())
/// }