fixed typo in docs

This commit is contained in:
Maccesch 2024-02-12 19:36:37 +00:00
parent 91278df889
commit 90b954c654
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ use std::rc::Rc;
/// Currently there is no way to use a function with a return value. Please open an issue if you need this. /// Currently there is no way to use a function with a return value. Please open an issue if you need this.
/// ///
/// If you want to throttle a function that takes an argument there are also the versions /// If you want to throttle a function that takes an argument there are also the versions
/// [`use_debounce_fn_with_args`] and [`use_debounce_fn_with_args_and_options`]. /// [`use_debounce_fn_with_arg`] and [`use_debounce_fn_with_arg_and_options`].
/// ///
/// ## Recommended Reading /// ## Recommended Reading
/// ///

View file

@ -59,7 +59,7 @@ pub use crate::utils::ThrottleOptions;
/// ``` /// ```
/// ///
/// If you want to throttle a function that takes an argument there are also the versions /// If you want to throttle a function that takes an argument there are also the versions
/// [`use_throttle_fn_with_args`] and [`use_throttle_fn_with_args_and_options`]. /// [`use_throttle_fn_with_arg`] and [`use_throttle_fn_with_arg_and_options`].
/// ///
/// ## Recommended Reading /// ## Recommended Reading
/// ///