Skip to content

Commit a805295

Browse files
authored
fix: typos in README.md
1 parent 3459c10 commit a805295

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can join our [Slack Group] for discussion.
3636
Pub: [FlutterQuill] <br>
3737
If you are viewing this page from pub.dev page, then you
3838
might have some issues with opening some links, please open
39-
it in GitHub repo instead.
39+
it's in the GitHub repo instead.
4040

4141
## Table of contents
4242
- [Flutter Quill](#flutter-quill)
@@ -93,8 +93,6 @@ dependencies:
9393
> Using the latest version and reporting any issues you encounter on GitHub will greatly contribute to the improvement of the library.
9494
> Your input and insights are valuable in shaping a stable and reliable version for all our users. Thank you for being part of the open-source community!
9595
>
96-
> If the latest version of [FlutterQuill Extensions] is pre-release, then please use it to work with the latest stable version of [FlutterQuill]
97-
>
9896
9997
Compatible versions:
10098
@@ -140,7 +138,7 @@ QuillProvider(
140138
)
141139
```
142140

143-
And depending on your use case, you might want to dispose the `_controller` in dispose method
141+
Depending on your use case, you might want to dispose of the `_controller` in `dispose` method
144142

145143
in most cases, it's better to.
146144

@@ -159,13 +157,13 @@ It consists of a series of operations, each representing an insertion, deletion,
159157
or formatting change within the document.
160158

161159
Don’t be confused by its name Delta—Deltas represents both documents and changes to documents.
162-
If you think of Deltas as the instructions from going from one document to another,
160+
If you think of Deltas as the instructions for going from one document to another,
163161
the way Deltas represent a document is by expressing the instructions starting from an empty document.
164162

165163
* Use `_controller.document.toDelta()` to extract the deltas.
166164
* Use `_controller.document.toPlainText()` to extract plain text.
167165

168-
FlutterQuill provides some JSON serialization support, so that you can save and open documents.
166+
FlutterQuill provides some JSON serialization support so that you can save and open documents.
169167
To save a document as JSON, do something like the following:
170168

171169
```dart
@@ -256,7 +254,7 @@ Please use [flutter_quill_test](https://pub.dev/packages/flutter_quill_test) for
256254

257255
## Contributors
258256

259-
Special thanks for everyone that has contributed to this project...
257+
Special thanks to everyone who has contributed to this project...
260258

261259
<a href="https://github.com/singerdmx/flutter-quill/graphs/contributors">
262260
<img src="https://contrib.rocks/image?repo=singerdmx/flutter-quill" />
@@ -270,7 +268,7 @@ We welcome contributions!
270268

271269
Please follow these guidelines when contributing to the project. See [CONTRIBUTING.md](./CONTRIBUTING.md) for more details. <br>
272270

273-
We must mention that the [CONTRIBUTING.md](./CONTRIBUTING.md) have a development notes, so if you're planning on contributing to the repo,
271+
We must mention that the [CONTRIBUTING.md](./CONTRIBUTING.md) has a development notes, so if you're planning on contributing to the repo,
274272
please consider reading it.
275273

276274
You can check the [Todo](./doc/todo.md) list if you want to
@@ -283,4 +281,3 @@ You can check the [Todo](./doc/todo.md) list if you want to
283281
[Youtube Playlist]: https://youtube.com/playlist?list=PLbhaS_83B97vONkOAWGJrSXWX58et9zZ2
284282
[Slack Group]: https://join.slack.com/t/bulletjournal1024/shared_invite/zt-fys7t9hi-ITVU5PGDen1rNRyCjdcQ2g
285283
[Sample Page]: https://github.com/singerdmx/flutter-quill/blob/master/example/lib/presentation/quill/quill_screen.dart
286-
[FluentUI]: https://pub.dev/packages/fluent_ui

0 commit comments

Comments
 (0)