Skip to content

Commit 0323992

Browse files
makoto-developervincenzopalazzo
authored andcommitted
Fix typos (MANTAINERS/fount/Creats)
1 parent 91e50cf commit 0323992

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ from the main (upstream) repository:
145145
146146
## <a name="rules"></a> Coding Rules
147147
148-
see `doc/dev/MANTAINERS.md` file
148+
see `doc/dev/MAINTAINERS.md` file
149149
150150
151151
## <a name="commit"></a> Commit Message Guidelines
@@ -156,7 +156,7 @@ we use the git commit messages trigger releases.
156156
157157
### Commit Message Format
158158
159-
see `doc/dev/MANTAINERS.md` file
159+
see `doc/dev/MAINTAINERS.md` file
160160
161161
[github]: https://github.com/zino-app/graphql-flutter
162162
[discord]: https://discord.gg/tXTtBfC

packages/graphql_flutter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ return FloatingActionButton(
429429

430430
`GraphQLCache` allows for optimistic mutations by passing an `optimisticResult` to `RunMutation`. It will then call `update(GraphQLDataProxy cache, QueryResult result)` twice (once eagerly with `optimisticResult`), and rebroadcast all queries with the optimistic cache state.
431431

432-
A complete and well-commented rundown of how exactly one interfaces with the `proxy` provided to `update` can be fount in the
432+
A complete and well-commented rundown of how exactly one interfaces with the `proxy` provided to `update` can be found in the
433433
[`GraphQLDataProxy` API docs](https://pub.dev/documentation/graphql/latest/graphql/GraphQLDataProxy-class.html)
434434

435435
```dart

packages/graphql_flutter/lib/src/widgets/subscription.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'package:graphql/client.dart';
44
import 'package:graphql_flutter/src/widgets/hooks/graphql_client.dart';
55
import 'package:graphql_flutter/src/widgets/hooks/subscription.dart';
66

7-
/// Creats a subscription with [GraphQLClient.subscribe].
7+
/// Creates a subscription with [GraphQLClient.subscribe].
88
///
99
/// The [builder] is passed a [QueryResult] with only the **most recent**
1010
/// `data`. [ResultAccumulator] can be used to accumulate results.
@@ -78,7 +78,7 @@ class Subscription<TParsed> extends HookWidget {
7878
}
7979
}
8080

81-
/// Creats a subscription widget like [Subscription] but
81+
/// Creates a subscription widget like [Subscription] but
8282
/// with an external client.
8383
class SubscriptionOnClient<TParsed> extends HookWidget {
8484
const SubscriptionOnClient({

0 commit comments

Comments
 (0)