From a2d2e4d6b5e2bd7257232c2156b78240452e9991 Mon Sep 17 00:00:00 2001 From: Naveen Arunachalam Date: Thu, 4 Aug 2016 11:16:55 -0700 Subject: [PATCH] Fix typo in documentation --- sorts/bogosort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorts/bogosort.py b/sorts/bogosort.py index 2e297c852..7e9d07f50 100644 --- a/sorts/bogosort.py +++ b/sorts/bogosort.py @@ -12,7 +12,7 @@ from __future__ import print_function import random def bogosort(collection): - """Pure implementation of quick sort algorithm in Python + """Pure implementation of bogosort algorithm in Python :param collection: some mutable ordered collection with heterogeneous comparable items inside :return: the same collection ordered by ascending