git: ec571d240a - main - books/fdp-primer: correct ordered/unordered list examples

Ceri Davies ceri at FreeBSD.org
Wed Jul 21 13:44:05 UTC 2021


The branch main has been updated by ceri:

URL: https://cgit.FreeBSD.org/doc/commit/?id=ec571d240a17245ac711e9d74e3e8f7dd04d7ccc

commit ec571d240a17245ac711e9d74e3e8f7dd04d7ccc
Author:     Ceri Davies <ceri at FreeBSD.org>
AuthorDate: 2021-07-21 13:42:43 +0000
Commit:     Ceri Davies <ceri at FreeBSD.org>
CommitDate: 2021-07-21 13:42:43 +0000

    books/fdp-primer: correct ordered/unordered list examples
    
    Reported by:    Pau Amma <pauamma at gundo.com>
---
 .../fdp-primer/asciidoctor-primer/_index.adoc      | 36 +++++++++++-----------
 1 file changed, 18 insertions(+), 18 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 e74e4feabe..27634f98e3 100644
--- a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc
+++ b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc
@@ -140,44 +140,44 @@ To get more information about lists check link:https://docs.asciidoctor.org/asci
 [[asciidoctor-ordered-lists]]
 === Ordered lists
 
-To create an ordered list use the `*` character.
+To create an ordered list use the `.` character.
 
 For example this is an ordered list.
 
 ....
-* First item
-* Second item
-** Subsecond item
-* Third item
+. First item
+. Second item
+.. Subsecond item
+. Third item
 ....
 
 And this would be rendered as.
 
-* First item
-* Second item
-** Subsecond item
-* Third item
+. First item
+. Second item
+.. Subsecond item
+. Third item
 
 [[asciidoctor-unordered-lists]]
 === Unordered lists
 
-To create an unordered list use the `.` character.
+To create an unordered list use the `*` character.
 
 For example this is an unordered list.
 
 ....
-. First item
-. Second item
-.. Subsecond item
-. Third item
+* First item
+* Second item
+** Subsecond item
+* Third item
 ....
 
 And this would be rendered as.
 
-. First item
-. Second item
-.. Subsecond item
-. Third item
+* First item
+* Second item
+** Subsecond item
+* Third item
 
 [[asciidoctor-links]]
 == Links


More information about the dev-commits-doc-all mailing list