Skip to content

Commit

Permalink
Fix closing signs in documentation (#5645)
Browse files Browse the repository at this point in the history
* Fix closing signs in documentation

`<` char was being used to close tags in 2 spots within the docs; they should be `>`

* Changelog update
  • Loading branch information
tomquirk authored and hwillson committed Dec 13, 2019
1 parent 362e465 commit 4fb237d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
parameter. <br/>
[@mjlyons](https://github.com/mjlyons) in [#5388](https://github.com/apollographql/apollo-client/pull/5388)

- Documentation updates. <br/>
[@tomquirk](https://github.com/tomquirk) in [#5645](https://github.com/apollographql/apollo-client/pull/5645)

### GraphQL Anywhere vNext

- Fix `filter` edge case involving `null`. <br/>
Expand Down
4 changes: 2 additions & 2 deletions docs/source/api/react-apollo.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ The Query component accepts the following props. Only `query` and `children` are
<dd>A callback executed once your query successfully completes.</dd>
<dt><code>onError</code>: (error: ApolloError) => void</dt>
<dd>A callback executed in the event of an error.</dd>
<dt><code>context</code>: Record&lt;string, any&lt;</dt>
<dt><code>context</code>: Record&lt;string, any&gt;</dt>
<dd>Shared context between your Query component and your network interface (Apollo Link). Useful for setting headers from props or sending information to the <code>request</code> function of Apollo Boost.</dd>
<dt><code>partialRefetch</code>: boolean</dt>
<dd>If <code>true</code>, perform a query <code>refetch</code> if the query result is marked as being partial, and the returned data is reset to an empty Object by the Apollo Client <code>QueryManager</code> (due to a cache miss). The default value is <code>false</code> for backwards-compatibility's sake, but should be changed to true for most use-cases.</dd>
Expand Down Expand Up @@ -147,7 +147,7 @@ The Mutation component accepts the following props. Only `mutation` and `childre
<dd>A callback executed once your mutation successfully completes</dd>
<dt><code>onError</code>: (error: ApolloError) => void</dt>
<dd>A callback executed in the event of an error</dd>
<dt><code>context</code>: Record&lt;string, any&lt;</dt>
<dt><code>context</code>: Record&lt;string, any&gt;</dt>
<dd>Shared context between your Mutation component and your network interface (Apollo Link). Useful for setting headers from props or sending information to the <code>request</code> function of Apollo Boost.</dd>
<dt><code>client</code>: ApolloClient</dt>
<dd>An <code>ApolloClient</code> instance. By default <code>Mutation</code> uses the client passed down via context, but a different client can be passed in.</dd>
Expand Down

0 comments on commit 4fb237d

Please sign in to comment.