docs: typos (#685)

This commit is contained in:
ryndin32 2023-03-15 23:40:57 +03:00 committed by GitHub
parent a8a9c575b5
commit 0bac16dba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ Your directory structure should now look something like this
leptos_tutorial
├── src
│ └── main.rs
├── Cargo.html
├── Cargo.toml
├── index.html
```

View File

@ -238,7 +238,7 @@ which allows you to easily pass props with different values.
In this case, its helpful to know about the
[`Signal`](https://docs.rs/leptos/latest/leptos/struct.Signal.html) type. `Signal`
is a enumerated type that represents any kind of readable reactive signal. It can
is an enumerated type that represents any kind of readable reactive signal. It can
be useful when defining APIs for components youll want to reuse while passing
different sorts of signals. The [`MaybeSignal`](https://docs.rs/leptos/latest/leptos/enum.MaybeSignal.html) type is useful when you want to be able to take either a static or
reactive value.