Skip to content

Commit 25be07f

Browse files
committed
docs: Readme should not say 'mixin' twice in a row
1 parent 5a5c95f commit 25be07f

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

.changeset/early-tools-drum.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@data-client/normalizr': patch
3+
'@data-client/graphql': patch
4+
'@data-client/react': patch
5+
'@data-client/rest': patch
6+
---
7+
8+
Update README to not say 'mixin' twice

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ For the small price of 9kb gziped.    [🏁Get started now](https://da
274274

275275
### Reactive Applications
276276

277-
- Rendering: [useSuspense()](https://dataclient.io/docs/api/useSuspense), [useLive()](https://dataclient.io/docs/api/useLive), [useCache()](https://dataclient.io/docs/api/useCache), [useDLE()](https://dataclient.io/docs/api/useDLE), [useQuery()](https://dataclient.io/docs/api/useQuery)
277+
- Rendering: [useSuspense()](https://dataclient.io/docs/api/useSuspense), [useLive()](https://dataclient.io/docs/api/useLive), [useCache()](https://dataclient.io/docs/api/useCache), [useDLE()](https://dataclient.io/docs/api/useDLE), [useQuery()](https://dataclient.io/docs/api/useQuery), [useLoading()](https://dataclient.io/docs/api/useLoading), [useDebounce()](https://dataclient.io/docs/api/useDebounce), [useCancelling()](https://dataclient.io/docs/api/useCancelling)
278278
- Event handling: [useController()](https://dataclient.io/docs/api/useController) returns [Controller](https://dataclient.io/docs/api/Controller)
279279
<table>
280280
<thead>

docs/rest/api/Entity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Entities are bound to Endpoints using [resource.schema](./resource.md#schema) or
9595

9696
:::tip
9797

98-
If you already have your classes defined, [EntityMixin](./EntityMixin.md) mixin can also be
98+
If you already have your classes defined, [EntityMixin](./EntityMixin.md) can also be
9999
used to make Entities.
100100

101101
:::

docs/rest/api/EntityMixin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import TypeScriptEditor from '@site/src/components/TypeScriptEditor';
1616

1717
`Entity` defines a single _unique_ object.
1818

19-
If you already have classes for your data-types, `EntityMixin` mixin may be for you.
19+
If you already have classes for your data-types, `EntityMixin` may be for you.
2020

2121
<TypeScriptEditor>
2222

@@ -94,7 +94,7 @@ Specifies the [Entity.schema](./Entity.md#schema)
9494

9595
## Methods
9696

97-
`EntityMixin` mixin has the same [methods as the Entity](./Entity.md#lifecycle) class.
97+
`EntityMixin` has the same [methods as the Entity](./Entity.md#lifecycle) class.
9898

9999
## const vs class
100100

packages/graphql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ return <ReviewForm onSubmit={data => controller.fetch(createReview, data)} />;
112112
<tbody><tr>
113113
<td rowSpan="4"><a href="https://en.wikipedia.org/wiki/Object_(computer_science)">Object</a></td>
114114
<td align="center">✅</td>
115-
<td><a href="https://dataclient.io/rest/api/Entity">Entity</a>, <a href="https://dataclient.io/rest/api/EntityMixin">EntityMixin</a> mixin, <a href="https://dataclient.io/graphql/api/GQLEntity">GQLEntity</a></td>
115+
<td><a href="https://dataclient.io/rest/api/Entity">Entity</a>, <a href="https://dataclient.io/rest/api/EntityMixin">EntityMixin</a>, <a href="https://dataclient.io/graphql/api/GQLEntity">GQLEntity</a></td>
116116
<td>single <em>unique</em> object</td>
117117
<td align="center">✅</td>
118118
</tr>

packages/normalizr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Available from [@data-client/endpoint](https://www.npmjs.com/package/@data-clien
244244
<tbody><tr>
245245
<td rowSpan="4"><a href="https://en.wikipedia.org/wiki/Object_(computer_science)">Object</a></td>
246246
<td align="center">✅</td>
247-
<td><a href="https://dataclient.io/rest/api/Entity">Entity</a>, <a href="https://dataclient.io/rest/api/EntityMixin">EntityMixin</a> mixin</td>
247+
<td><a href="https://dataclient.io/rest/api/Entity">Entity</a>, <a href="https://dataclient.io/rest/api/EntityMixin">EntityMixin</a></td>
248248
<td>single <em>unique</em> object</td>
249249
<td align="center">✅</td>
250250
</tr>

packages/react/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ For the small price of 9kb gziped. &nbsp;&nbsp; [🏁Get started now](https://da
274274

275275
## API
276276

277-
- Rendering: [useSuspense()](https://dataclient.io/docs/api/useSuspense), [useLive()](https://dataclient.io/docs/api/useLive), [useCache()](https://dataclient.io/docs/api/useCache), [useDLE()](https://dataclient.io/docs/api/useDLE), [useQuery()](https://dataclient.io/docs/api/useQuery)
277+
- Rendering: [useSuspense()](https://dataclient.io/docs/api/useSuspense), [useLive()](https://dataclient.io/docs/api/useLive), [useCache()](https://dataclient.io/docs/api/useCache), [useDLE()](https://dataclient.io/docs/api/useDLE), [useQuery()](https://dataclient.io/docs/api/useQuery), [useLoading()](https://dataclient.io/docs/api/useLoading), [useDebounce()](https://dataclient.io/docs/api/useDebounce), [useCancelling()](https://dataclient.io/docs/api/useCancelling)
278278
- Event handling: [useController()](https://dataclient.io/docs/api/useController) returns [Controller](https://dataclient.io/docs/api/Controller)
279279
- [ctrl.fetch](https://dataclient.io/docs/api/Controller#fetch)
280280
- [ctrl.fetchIfStale](https://dataclient.io/docs/api/Controller#fetchIfStale)

packages/rest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ supports inferring argument types from the path templates.
175175
<tbody><tr>
176176
<td rowSpan="4"><a href="https://en.wikipedia.org/wiki/Object_(computer_science)">Object</a></td>
177177
<td align="center">✅</td>
178-
<td><a href="https://dataclient.io/rest/api/Entity">Entity</a>, <a href="https://dataclient.io/rest/api/EntityMixin">EntityMixin</a> mixin</td>
178+
<td><a href="https://dataclient.io/rest/api/Entity">Entity</a>, <a href="https://dataclient.io/rest/api/EntityMixin">EntityMixin</a></td>
179179
<td>single <em>unique</em> object</td>
180180
<td align="center">✅</td>
181181
</tr>

0 commit comments

Comments
 (0)