diff --git a/guide/english/python/min-function/index.md b/guide/english/python/min-function/index.md index b7d80f60c1..a03afb4538 100644 --- a/guide/english/python/min-function/index.md +++ b/guide/english/python/min-function/index.md @@ -1,7 +1,7 @@ --- title: Python Min Function --- -`min()` is a built-in function in Python 3\. It returns the smallest item in an iterable or the smallest of two or more arguments. +`min()` is a built-in function in Python 3\. It returns the smallest item in an iterable, or the smallest of two or more arguments. ## Arguments @@ -21,8 +21,7 @@ Invalid Arguments: ## Return Value -The smallest item in the iterable is returned. If two or more positional arguments are provided, the smallest of the positional arguments -is returned. If the iterable is empty and default is not provided, a ValueError is raised. +The smallest item in the iterable is returned. If two or more positional arguments are provided, the smallest of the positional arguments is returned. If the iterable is empty and default is not provided, a ValueError is raised. ## Code Sample @@ -45,4 +44,4 @@ is returned. If the iterable is empty and default is not provided, a ValueError ![:rocket:](//forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":rocket:") Run Code -Official Docs \ No newline at end of file +Official Docs