Skip to content

Commit 3299546

Browse files
committed
Few assorted typo and wording fixes.
1 parent b85a599 commit 3299546

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Fixes:
4242
was incomplete and one corner case remained unfixed. This is now addressed.
4343

4444
- [#231](https://github.com/mity/md4c/issues/231):
45-
`md2html --full-html` now emits `<meta charset="UTF-8">` in the HTML header.
45+
`md2html --full-html` now emits `<meta charset="UTF-8">` in the HTML header.
4646

4747

4848
## Version 0.5.1

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ language) are full DOM-like parsers: They construct abstract syntax tree (AST)
219219
representation of the whole Markdown document. That takes time and it leads to
220220
bigger memory footprint.
221221

222-
Build AST is completely fine as long as you really need it. If you don't need
223-
it, there is a very high chance that using MD4C will be substantially faster
224-
and less hungry in terms of memory consumption.
222+
Building AST is completely fine as long as you need it. If you don't, there is
223+
a very high chance that using MD4C will be substantially faster and less hungry
224+
in terms of memory consumption.
225225

226226
Last but not least, some Markdown parsers are implemented in a naive way. When
227227
fed with a [smartly crafted input pattern](test/pathological_tests.py), they

src/md4c.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ struct MD_UNICODE_FOLD_INFO_tag {
986986
* line breaks with given replacement character.
987987
*
988988
* NOTE: Caller is responsible to make sure the buffer is large enough.
989-
* (Given the output is always shorter then input, (end - beg) is good idea
989+
* (Given the output is always shorter than input, (end - beg) is good idea
990990
* what the caller should allocate.)
991991
*/
992992
static void

0 commit comments

Comments
 (0)