docs(hooks): fix typos (#1299)

I'm not totally sure how the sentence was supposed to read, but removing "state" from "It state" seemed to work. Also, "it's" is "it is" and not possessive, so I fixed that.
This commit is contained in:
Brian Donovan 2023-08-04 13:13:02 -07:00 committed by GitHub
parent 6d154b5072
commit 8f93ff3747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ use std::{
/// Create a new tracked state.
/// Tracked state is state that can drive Selector state
///
/// It state will efficiently update any Selector state that is reading from it, but it is not readable on it's own.
/// It will efficiently update any Selector state that is reading from it, but it is not readable on its own.
///
/// ```rust
/// use dioxus::prelude::*;