From 9e3ae03537ae7e7f2d6b56e87f37f2fa7bbfa5a9 Mon Sep 17 00:00:00 2001 From: Maccesch Date: Fri, 2 Jun 2023 20:27:28 +0100 Subject: [PATCH] fixed docs --- README.md | 2 +- src/use_scroll.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d75ef3f..2a97edb 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

Collection of essential Leptos utilities inspired by SolidJS-USE / VueUse

- Guide • + GuideDocs.rsCrates.io

diff --git a/src/use_scroll.rs b/src/use_scroll.rs index 390d4f4..fef2525 100644 --- a/src/use_scroll.rs +++ b/src/use_scroll.rs @@ -37,7 +37,7 @@ use wasm_bindgen::JsCast; /// ### With Offsets /// /// You can provide offsets when you use [`use_scroll_with_options`]. -/// These offsets are threshold in pixels when we a side is considered to have arrived. This is reflected in the return field `arrived_state`. +/// These offsets are thresholds in pixels when a side is considered to have arrived. This is reflected in the return field `arrived_state`. /// /// ``` /// # use leptos::*;