From 42e9b09fa4811a682e8e99e1729385bdef8a6455 Mon Sep 17 00:00:00 2001 From: Harshil Darji Date: Wed, 17 Aug 2016 17:21:40 +0530 Subject: [PATCH] fixed shell_sort --- sorts/shell_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorts/shell_sort.py b/sorts/shell_sort.py index 4dc37240b..c87651662 100644 --- a/sorts/shell_sort.py +++ b/sorts/shell_sort.py @@ -18,7 +18,7 @@ def shell_sort(collection): comparable items inside :return: the same collection ordered by ascending - >>> shell_sort([0, 5, 3, 2, 2)] + >>> shell_sort([0, 5, 3, 2, 2]) [0, 2, 2, 3, 5] >>> shell_sort([])