From c1e2da97e03e55b3992e3af85b8218cdd96d10e5 Mon Sep 17 00:00:00 2001 From: Andrei Calinescu Date: Tue, 16 Oct 2018 14:34:10 +1100 Subject: [PATCH] Mentioned 3 types of lists at beginning (#19074) The article structure and formatting doesn't make it obvious what the third type of list is, so I added the names of the 3 types of list to the first paragraph. --- client/src/pages/guide/english/html/lists/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/html/lists/index.md b/client/src/pages/guide/english/html/lists/index.md index 475d1c06b2..0a70468c55 100644 --- a/client/src/pages/guide/english/html/lists/index.md +++ b/client/src/pages/guide/english/html/lists/index.md @@ -3,7 +3,7 @@ title: Lists --- # Lists -Lists are used to display items. There are 3 types of lists. +Lists are used to display items. There are 3 types of lists: _ordered lists_, _unordered lists_, and _description lists_. ## Ordered lists An _ordered list_ is used to describe an ordered collection of data. Browsers usually display an ordered list as a numbered list. Create an ordered list using the `
    ` tag.