Skip to content

Commit

Permalink
Fix typos in docs/concepts (#687)
Browse files Browse the repository at this point in the history
* Fix typo in docs/concepts/philosophy/

```
- toopls
+ tools
```

* Fix typo in docs/concepts/stream-patterns.md

```
- framewrk
+ framework
```

* Delete unnecessary `[` from core-package.md

```
- [We've previously seen
+ We've previously seen
```
  • Loading branch information
billfienberg authored Apr 9, 2020
1 parent e09780e commit ded6f43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/concepts/core-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ _Exchanges_ are discussed in more detail on the [next page](./exchanges.md).
The largest part of `urql` itself and the core package is the aforementioned `Client`. It's often
used directly when using `urql` in Node.js without any other integration.

[We've previously seen how we can use the `Client`'s stream methods directly, in [Stream
We've previously seen how we can use the `Client`'s stream methods directly, in [Stream
Patterns](./stream-patterns.md). However, the [`Client`](../api/core.md#client) also has plenty of
convenience methods that make interacting with the `Client` directly a lot easier.

Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/philosophy.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ order: 1

By default, we aim to provide features that allow you to build your app quickly with minimal
configuration. `urql` is designed to be a client that grows with you. As you go from building your first
GraphQL app to a utilising the full functionality, the toopls are available to extend and customize `urql` based on
GraphQL app to a utilising the full functionality, the tools are available to extend and customize `urql` based on
your needs.

In this guide, we will walk through how `urql` is set up internally and how all pieces of the puzzle
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/stream-patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Internally the `Client` is an event hub. It defines a stream of operations as in
through a layer that will ultimately send GraphQL requests to an API, and then send the corresponding results
to another stream.

As a user working with framewrk code we never interact with these streams directly, but it's helpful to know that they describe
As a user working with framework code we never interact with these streams directly, but it's helpful to know that they describe
every interaction between the declarative queries we write and the way that `urql` fulfills them.

## Streams in JavaScript
Expand Down

0 comments on commit ded6f43

Please sign in to comment.