Skip to content

Commit 69d3985

Browse files
authored
[flutter_markdown] Fix typo in readme (#5096)
Since HTML is pronounced with an A at the beginning (at least by around [85%](https://english.stackexchange.com/a/23762) of people), it should [probably](https://english.stackexchange.com/a/25746) be spelled `an HTML`.
1 parent bcfa15d commit 69d3985

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/flutter_markdown/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.18+1
2+
3+
* Fixes a typo in README.
4+
15
## 0.6.18
26

37
* Adds support for `footnote`.

packages/flutter_markdown/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ containing a rich text representation.
1717
the Markdown into an abstract syntax tree (AST). The nodes of the AST are an
1818
HTML representation of the Markdown data.
1919

20-
## Flutter Isn't a HTML Renderer
20+
## Flutter Isn't an HTML Renderer
2121

2222
While this approach to creating a rich text representation of Markdown source
23-
text in Flutter works well, Flutter isn't a HTML renderer like a web browser.
23+
text in Flutter works well, Flutter isn't an HTML renderer like a web browser.
2424
Markdown was developed by John Gruber in 2004 to allow users to turn readable,
2525
plain text content into rich text HTML. This close association with HTML allows
2626
for the injection of HTML into the Markdown source data. Markdown parsers

packages/flutter_markdown/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A Markdown renderer for Flutter. Create rich text output,
44
formatted with simple Markdown tags.
55
repository: https://github.com/flutter/packages/tree/main/packages/flutter_markdown
66
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_markdown%22
7-
version: 0.6.18
7+
version: 0.6.18+1
88

99
environment:
1010
sdk: ">=3.0.0 <4.0.0"

0 commit comments

Comments
 (0)