docs: grammar typo for MultiActon doc comment (#2589)

This commit is contained in:
David Pitoniak 2024-05-11 15:05:35 -04:00 committed by GitHub
parent 9e65f71db4
commit a2c7e23d54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -242,7 +242,7 @@ where
}
}
/// Creates an [MultiAction] to synchronize an imperative `async` call to the synchronous reactive system.
/// Creates a [MultiAction] to synchronize an imperative `async` call to the synchronous reactive system.
///
/// If youre trying to load data by running an `async` function reactively, you probably
/// want to use a [create_resource](leptos_reactive::create_resource) instead. If youre trying
@ -319,7 +319,7 @@ where
}))
}
/// Creates an [MultiAction] that can be used to call a server function.
/// Creates a [MultiAction] that can be used to call a server function.
///
/// ```rust,ignore
/// # use leptos::*;