docs: typos

* Fixed wording

* Update ARCHITECTURE.md

Fixed superfluous whitespace
This commit is contained in:
Andrew Grande 2023-07-19 04:03:50 -07:00 committed by GitHub
parent c1c49ce53b
commit 951607de74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -220,8 +220,8 @@ for reference: they include large amounts of manual SSR route handling, etc.
## `cargo-leptos` helpers ## `cargo-leptos` helpers
`leptos_config` and `leptos_hot_reload` exist to support two different features `leptos_config` and `leptos_hot_reload` exist to support two different features
of `cargo-leptos`, namely its configuration and its view-patching/hot- of `cargo-leptos`, namely its configuration and its view-patching/hot-reloading
reloading features. features.
Its important to say that the main feature `cargo-leptos` remains its ability Its important to say that the main feature `cargo-leptos` remains its ability
to conveniently tie together different build tooling, compiling your app to to conveniently tie together different build tooling, compiling your app to

View File

@ -68,7 +68,7 @@ pub fn SimpleCounter(cx: Scope) -> impl IntoView {
The `SimpleCounter` function itself runs once. The `value` signal is created once. The framework hands off the `increment` function to the browser as an event listener. When you click the button, the browser calls `increment`, which updates `value` via `set_value`. And that updates the single text node represented in our view by `{value}`. The `SimpleCounter` function itself runs once. The `value` signal is created once. The framework hands off the `increment` function to the browser as an event listener. When you click the button, the browser calls `increment`, which updates `value` via `set_value`. And that updates the single text node represented in our view by `{value}`.
Closures are key to reactivity. They provide the framework with the ability to rerun the smallest possible unit of your application in responsive to a change. Closures are key to reactivity. They provide the framework with the ability to rerun the smallest possible unit of your application in response to a change.
So remember two things: So remember two things: