diff --git a/README.md b/README.md index 98581c3..fea2ede 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ flatter_list = list(itertools.chain.from_iterable()) product_of_elems = functools.reduce(lambda out, el: out * el, ) list_of_chars = list() ``` -* **For details about built-in functions sorted(), min() and max() see [sortable](#sortable).** +* **For details about sorted(), min() and max() see [sortable](#sortable).** * **Module [operator](#operator) provides functions itemgetter() and mul() that offer the same functionality as [lambda](#lambda) expressions above.** ```python diff --git a/index.html b/index.html index f105eb1..c1f260f 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@
- +
@@ -120,7 +120,7 @@ product_of_elems = functools.reduce(lambda out list_of_chars = list(<str>)
    -
  • For details about built-in functions sorted(), min() and max() see sortable.
  • +
  • For details about sorted(), min() and max() see sortable.
  • Module operator provides functions itemgetter() and mul() that offer the same functionality as lambda expressions above.
<list>.insert(<int>, <el>)     # Inserts item at index and moves the rest to the right.
@@ -2875,7 +2875,7 @@ $ pyinstaller script.py --add-data '<path>:.'