diff --git a/searches/linear_search.py b/searches/linear_search.py index adf22056b..155119bb4 100644 --- a/searches/linear_search.py +++ b/searches/linear_search.py @@ -14,7 +14,7 @@ python linear_search.py def linear_search(sequence, target): """Pure implementation of linear search algorithm in Python - :param sequence: some sorted collection with comparable items + :param sequence: a collection with comparable items (as sorted items not required in Linear Search) :param target: item value to search :return: index of found item or None if item is not found