Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 7909001

Browse files
committed
fixed typos
1 parent 52d4b02 commit 7909001

File tree

5 files changed

+199
-40
lines changed

5 files changed

+199
-40
lines changed

docs/Interfaces.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ in order to analyse when which SubscriptionContainer triggered a rerender on a C
11661166

11671167
#### `agileInstance`
11681168

1169-
The [Agile Instance](./packages/core/features/agile-instance/Introduction.md) the created [SubscriptionContainer](./packages/core/features/integration/Introduction.md#-subscriptions) belongs to.
1169+
The [Agile Instance](./packages/core/features/agile-instance/Introduction.md) to which the created [SubscriptionContainer](./packages/core/features/integration/Introduction.md#-subscriptions) belongs to.
11701170
However, since each Observer has an instance to the Agile Instance, `useAgile()` can automatically derive the Agile Instance from that.
11711171

11721172
| Type | Default | Required |
@@ -1199,7 +1199,7 @@ return <p>{myState.name}</p>
11991199

12001200
// -- core.js ----------------------------------------------
12011201

1202-
// Cause rerender on 'MyComponent.js',
1202+
// Causes rerender on 'MyComponent.js',
12031203
// since the '.name' property got accessed
12041204
MY_STATE.patch({name: 'jeff'});
12051205

@@ -1265,7 +1265,7 @@ in order to analyse when which SubscriptionContainer triggered a rerender on a C
12651265

12661266
#### `agileInstance`
12671267

1268-
The [Agile Instance](./packages/core/features/agile-instance/Introduction.md) the created [SubscriptionContainer](./packages/core/features/integration/Introduction.md#-subscriptions) belongs to.
1268+
The [Agile Instance](./packages/core/features/agile-instance/Introduction.md) to which the created [SubscriptionContainer](./packages/core/features/integration/Introduction.md#-subscriptions) belongs to.
12691269
However, since each Observer has an instance to the Agile Instance, `useProxy()` can automatically derive the Agile Instance from that.
12701270

12711271
| Type | Default | Required |
File renamed without changes.

docs/examples/react/Introduction.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@ slug: /examples/react
66
---
77

88
## 🤠 Get Started
9-
- [First Collection](./react/first-collection)
10-
- [First Computed](./react/first-computed)
119
- [First State](./react/first-state)
1210
- [First State [Class Component]](./react/class/first-state)
11+
- [First Collection](./react/first-collection)
12+
- [First Computed](./react/first-computed)
1313
- [Multieditor](./react/multieditor)
1414
- [useProxy](./react/simple-useproxy)
1515

1616
## 👾 Performance
1717
- [Large State](./react/large-state)
1818
- [Frequent Updates](./react/frequent-updates)
1919

20-
You can get an overview of all performance examples in [this](https://github.com/agile-ts/performance-compare) repo.
21-
20+
You can get an overview of all performance examples in [this](https://github.com/agile-ts/performance-compare) repository.
2221

2322
## 😎 Medium
2423
- [Simple Todo List](./react/simple-todo-list)

0 commit comments

Comments
 (0)