Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Apr 6, 2024
1 parent 4ce44d1 commit 58e6e5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions book/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ fn app() -> Element {
// You can subscribe to a signal, by calling it (`signal()`),
// calling the `signal.read()` method, or just embedding it into the RSX.
// and thus producing a new Element with the updated counter.
// So, everytime the signal is mutated the component function will rerun
// because it has been subscribed
// Everytime the signal is mutated the component function will rerun
// because it has been subscribed, and thus producing a
// new Element with the updated counter.
println!("{}", state());
render!(
Expand Down
6 changes: 3 additions & 3 deletions book/src/guides/dioxus.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ fn MyComponent() -> Element {
// You can subscribe to a signal, by calling it (`signal()`),
// calling the `signal.read()` method, or just embedding it into the RSX.
// and thus producing a new Element with the updated counter.
// So, everytime the signal is mutated the component function will rerun
// because it has been subscribed
// Everytime the signal is mutated the component function will rerun
// because it has been subscribed, and thus producing a
// new Element with the updated counter.
println!("{}", state());
rsx!(
Expand Down

0 comments on commit 58e6e5c

Please sign in to comment.