diff --git a/README.md b/README.md index ecf964c..95a1a71 100644 --- a/README.md +++ b/README.md @@ -778,7 +778,7 @@ Inline ### Any, All ```python - = any() # Is `bool(el)` True for any element. + = any() # Is `bool()` True for any element. = all() # Is True for all elements or empty. ``` diff --git a/index.html b/index.html index 1c7c430..94621da 100644 --- a/index.html +++ b/index.html @@ -668,7 +668,7 @@ func(*args, **kwargs)
  • Reduce must be imported from the functools module.
-

Any, All

<bool> = any(<collection>)                          # Is `bool(el)` True for any element.
+

Any, All

<bool> = any(<collection>)                          # Is `bool(<el>)` True for any element.
 <bool> = all(<collection>)                          # Is True for all elements or empty.