Skip to content

Commit

Permalink
Removed periods and fixed spelling mistakes (#103)
Browse files Browse the repository at this point in the history
* Added period to description

* Fixed the spelling of " Arguabley" to "Arguably"

* Update README.md

* Added period to description

* Added period to description

* Grammar and spelling correction

added period to description, fixed spelling of "encouter" to "encounter"

* Added period to description

* Added period to description

* Grammar and spelling

Added period to description, fixed spelling of "accross" to "across"

* Added period to description

* Added period to description

* Fixed spelling of "aggresive" to "aggressive"

* Removed period from description

* Update optimizations.md

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Removed period from description

* Update src/concepts/html/README.md

Co-authored-by: Teymour Aldridge <42674621+teymour-aldridge@users.noreply.github.com>

Co-authored-by: Justin Starry <justin.m.starry@gmail.com>
Co-authored-by: Teymour Aldridge <42674621+teymour-aldridge@users.noreply.github.com>
  • Loading branch information
3 people committed Jul 10, 2020
1 parent a76d629 commit dd7bb1d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/advanced-topics/optimizations.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Make your app faster.
description: Make your app faster
---

# Optimizations & Best Practices
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Yew's Actor System

# Agents

Agents are similar to Angular's [Services](https://angular.io/guide/architecture-services) \(but without dependency injection\), and provide a Yew with an [Actor Model](https://en.wikipedia.org/wiki/Actor_model). Agents can be used to route messages between components independently of where they sit in the component hierarchy, or they can be used to create a global state, and they can also be used to offload computationally expensive tasks from the main thread which renders the UI. There is also planned support for using agents to allow Yew applications to communicate across tabs \(in the future\).
Agents are similar to Angular's [Services](https://angular.io/guide/architecture-services) \(but without dependency injection\), and provide a Yew with an [Actor Model](https://en.wikipedia.org/wiki/Actor_model). Agents can be used to route messages between components independently of where they sit in the component hierarchy, or they can be used to create a shared state, and they can also be used to offload computationally expensive tasks from the main thread which renders the UI. There is also planned support for using agents to allow Yew applications to communicate across tabs \(in the future\).

In order for agents to run concurrently, Yew uses [web-workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers).

Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/components/callbacks.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: ComponentLink and Callbacks.
description: ComponentLink and Callbacks
---

# Callbacks
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `html!` macro allows you to write HTML and SVG code declaratively. It is sim
2. An empty `html! {}` invocation is valid and will not render anything
3. Literals must always be quoted and wrapped in braces: `html! { "Hello, World" }`
{% hint style="info" %}
The `html!` macro can reach easily the default recursion limit of the compiler. It is advised to bump its value if you encouter compilation errors. Use an attribute like `#![recursion_limit="1024"]` to bypass the problem. See the [official documentation](https://doc.rust-lang.org/reference/attributes/limits.html#the-recursion_limit-attribute) and [this Stack Overflow question](https://stackoverflow.com/questions/27454761/what-is-a-crate-attribute-and-where-do-i-add-it) for details.
The `html!` macro can reach easily the default recursion limit of the compiler. It is advised to bump its value if you encounter compilation errors. Use an attribute like `#![recursion_limit="1024"]` in the crate root (i.e. either `lib.rs` or `main.rs`) to overcome the problem. See the [official documentation](https://doc.rust-lang.org/reference/attributes/limits.html#the-recursion_limit-attribute) and [this Stack Overflow question](https://stackoverflow.com/questions/27454761/what-is-a-crate-attribute-and-where-do-i-add-it) for details.
{% endhint %}

{% page-ref page="lists.md" %}
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/services/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Yew's glue to browser APIs.
description: Yew's glue to browser APIs
---

# Services
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/project-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ The preferred web workflow tool before the introduction of `wasm-pack` and `wasm
Yew examples</td>
</tr>
</tbody>
</table>
</table>

0 comments on commit dd7bb1d

Please sign in to comment.