From 092cf9b65825e8c036afdd5014b58b5f428bdcc0 Mon Sep 17 00:00:00 2001 From: Cindy Yates Date: Sun, 9 Dec 2018 13:48:36 -0700 Subject: [PATCH] Add more info to description list definition (#27140) Minor spelling fix plus additional information on the elements that make up a description list --- guide/english/html/tutorials/how-to-use-lists/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/html/tutorials/how-to-use-lists/index.md b/guide/english/html/tutorials/how-to-use-lists/index.md index d34021a8e6..f1c4cf32e5 100644 --- a/guide/english/html/tutorials/how-to-use-lists/index.md +++ b/guide/english/html/tutorials/how-to-use-lists/index.md @@ -3,7 +3,7 @@ title: How to Use Lists --- ## How to Use Lists Lists are used to specify a set of consecutive items or related information in well formed and semantic way, such as a list of ingredients or a list of procedural steps. -HTML markup has three different types of lists - **ordered**, **unordored** and **description** lists. +HTML markup has three different types of lists - **ordered**, **unordered** and **description** lists. ### Ordered Lists An ordered list is used to group a set of related items, in a specific order. @@ -64,7 +64,7 @@ An unordered list is used to group a set of related items, in no particular orde ### Description Lists -A description list is used to specify a list of terms and their descriptions. This list is created with `
` tag. Each list item is surrounded with `
` tag. +A description list is used to specify a list of terms and their descriptions. This list is created with `
` tag. Each list item made up of a `
` tag surrounding the term and a `
` tag surrounding the description of the term. ##### Code