diff options
author | Danilo G. Baio <dbaio@FreeBSD.org> | 2021-07-24 13:49:52 +0000 |
---|---|---|
committer | Danilo G. Baio <dbaio@FreeBSD.org> | 2021-07-24 13:58:10 +0000 |
commit | eb6e468922b9b3ae1c950e73a80de62aea1b24aa (patch) | |
tree | 9a469d2c8274e9fb1e99ee0a256b65c6eaf6b658 | |
parent | 3ae2df5499cc178c736144f2d06c17d138a67f91 (diff) |
books/fdp-primer: Update info about AsciiDoctor list types
-rw-r--r-- | documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc index 27634f98e3..581d39aff6 100644 --- a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc +++ b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc @@ -134,15 +134,15 @@ For example, this is a heading with two paragraphs. [[asciidoctor-lists]] == Lists -AsciiDoctor supports two type of lists: ordered and unordered. -To get more information about lists check link:https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/#lists[AsciiDoc Syntax Quick Reference]. +AsciiDoctor supports a few types of lists, the most common are `ordered` and `unordered`. +To get more information about lists, see link:https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/#lists[AsciiDoc Syntax Quick Reference]. [[asciidoctor-ordered-lists]] === Ordered lists To create an ordered list use the `.` character. -For example this is an ordered list. +For example, this is an ordered list. .... . First item @@ -163,7 +163,7 @@ And this would be rendered as. To create an unordered list use the `*` character. -For example this is an unordered list. +For example, this is an unordered list. .... * First item |