From 211965e24fa80c7397f941dab5b8a4c97355eb4d Mon Sep 17 00:00:00 2001 From: Ellet Date: Sat, 2 Dec 2023 08:45:36 +0300 Subject: [PATCH] docs: Fix typos in the README.md --- README.md | 10 +++++----- flutter_quill_extensions/README.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index afe120f60..afdff9447 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Check out our [Youtube Playlist] or [Code Introduction](./doc/code_introduction. to take a detailed walkthrough of the code base. You can join our [Slack Group] for discussion. -Pub: [FlutterQuill]
+Pub page: [FlutterQuill]
If you are viewing this page from pub.dev page, then you might have some issues with opening some links, please open it's in the GitHub repo instead. @@ -158,7 +158,7 @@ or formatting change within the document. Don’t be confused by its name Delta—Deltas represents both documents and changes to documents. If you think of Deltas as the instructions for going from one document to another, -the way Deltas represent a document is by expressing the instructions starting from an empty document. +the way Deltas represents a document is by expressing the instructions starting from an empty document. * Use `_controller.document.toDelta()` to extract the deltas. * Use `_controller.document.toPlainText()` to extract plain text. @@ -192,7 +192,7 @@ _controller.document = Document.fromJson(json); ## Configurations -The `QuillToolbar` and `QuillEditor` widgets lets you customize a lot of things +The `QuillToolbar` and `QuillEditor` widgets let you customize a lot of things [Sample Page] provides sample code for advanced usage and configuration. ### Links @@ -210,7 +210,7 @@ More details on [this commit](https://github.com/singerdmx/flutter-quill/commit/ ## Embed Blocks -As of version 6.0, embed blocks are not provided by default as part of this package. Instead, this package provides an interface to all the user to provide there own implementations for embed blocks. Implementations for image, video and formula embed blocks is proved in a separate package [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions). +As of version 6.0, embed blocks are not provided by default as part of this package. Instead, this package provides an interface for all the users to provide their own implementations for embed blocks. Implementations for image, video, and formula embed blocks are proved in a separate package [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions). Provide a list of embed @@ -268,7 +268,7 @@ We welcome contributions! Please follow these guidelines when contributing to the project. See [CONTRIBUTING.md](./CONTRIBUTING.md) for more details.
-We must mention that the [CONTRIBUTING.md](./CONTRIBUTING.md) has a development notes, so if you're planning on contributing to the repo, +We must mention that the [CONTRIBUTING.md](./CONTRIBUTING.md) has development notes, so if you're planning on contributing to the repo, please consider reading it. You can check the [Todo](./doc/todo.md) list if you want to diff --git a/flutter_quill_extensions/README.md b/flutter_quill_extensions/README.md index c710f49ef..8368999b8 100644 --- a/flutter_quill_extensions/README.md +++ b/flutter_quill_extensions/README.md @@ -126,7 +126,7 @@ QuillProvider( ## Embed Blocks -As of version [flutter_quill](https://pub.dev/packages/flutter_quill) 6.0, embed blocks are not provided by default as part of Flutter quill. Instead, it provides an interface for all the users to provide their own implementations for embed blocks. Implementations for image, video, and formula embed blocks are proved in this package +As of version [flutter_quill](https://pub.dev/packages/flutter_quill) 6.0, embed blocks are not provided by default as part of Flutter quill. Instead, it provides an interface for all the users to provide their implementations for embed blocks. Implementations for image, video, and formula embed blocks are proved in this package The instructions for using the embed blocks are in the [Usage](#usage) section