From ae73d4a601ce028f1956f907f8f95c1efd252e61 Mon Sep 17 00:00:00 2001 From: 30secondsofcode <30secondsofcode@gmail.com> Date: Fri, 23 Aug 2019 06:43:59 +0000 Subject: [PATCH] Travis build: 36 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49a77433d..5773beefa 100644 --- a/README.md +++ b/README.md @@ -741,7 +741,7 @@ longest_item([1, 2, 3], 'foobar') # 'foobar' Returns the `n` maximum elements from the provided list. If `n` is greater than or equal to the provided list's length, then return the original list (sorted in descending order). -Use `sorted() to sort the list, `[:n]` to get the specified number of elements. +Use `sorted()` to sort the list, `[:n]` to get the specified number of elements. Omit the second argument, `n`, to get a one-element list. ```py