From ee0b83d87638be714ebbef95a8f738192fe80c9a Mon Sep 17 00:00:00 2001 From: tachoni <44578437+tachoni@users.noreply.github.com> Date: Tue, 5 Mar 2019 03:20:35 +0300 Subject: [PATCH] Fixed typo on line 12 (#31800) Added colon before a list of description --- guide/english/python/lists/list-sort-method/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/lists/list-sort-method/index.md b/guide/english/python/lists/list-sort-method/index.md index ef30630898..940b671609 100644 --- a/guide/english/python/lists/list-sort-method/index.md +++ b/guide/english/python/lists/list-sort-method/index.md @@ -9,7 +9,7 @@ list.sort(key=…, reverse=[True/False]) ### Parameters -There are two optional parameters to this method +There are two optional parameters to this method:

key - The input value for the key parameter should be a function that takes a single argument and returns a value used for comparisons to sort the items in the list.