style: add missing word

This commit is contained in:
Pi Delport 2022-02-22 18:00:41 +02:00 committed by GitHub
parent 2213312938
commit 50bad7f983
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ The `chapter.content` is just a string which happens to be markdown. While it's
entirely possible to use regular expressions or do a manual find & replace, entirely possible to use regular expressions or do a manual find & replace,
you'll probably want to process the input into something more computer-friendly. you'll probably want to process the input into something more computer-friendly.
The [`pulldown-cmark`][pc] crate implements a production-quality event-based The [`pulldown-cmark`][pc] crate implements a production-quality event-based
Markdown parser, with the [`pulldown-cmark-to-cmark`][pctc] allowing you to Markdown parser, with the [`pulldown-cmark-to-cmark`][pctc] crate allowing you to
translate events back into markdown text. translate events back into markdown text.
The following code block shows how to remove all emphasis from markdown, The following code block shows how to remove all emphasis from markdown,