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