diff --git a/README.md b/README.md
index 220e32c..0746e5a 100644
--- a/README.md
+++ b/README.md
@@ -2095,9 +2095,10 @@ from operator import itemgetter, attrgetter, methodcaller
```python
import operator as op
+elementwise_sum = map(op.add, list_a, list_b)
+product_of_elems = functools.reduce(op.mul, )
```
diff --git a/index.html b/index.html
index d504607..2047a42 100644
--- a/index.html
+++ b/index.html
@@ -1840,9 +1840,10 @@ lock.release()
diff --git a/web/index_for_pdf.html b/web/index_for_pdf.html
index dcc0103..8c2bcfb 100644
--- a/web/index_for_pdf.html
+++ b/web/index_for_pdf.html
@@ -81,7 +81,7 @@
logging, 35 import operator as op
+elementwise_sum = map(op.add, list_a, list_b)
+product_of_elems = functools.reduce(op.mul, <collection>)
sorted_by_second = sorted(<collection>, key=op.itemgetter(1))
sorted_by_both = sorted(<collection>, key=op.itemgetter(1, 0))
-product_of_elems = functools.reduce(op.mul, <collection>)
LogicOp = enum.Enum('LogicOp', {'AND': op.and_, 'OR' : op.or_})
last_el = op.methodcaller('pop')(<list>)
main function, 1, 41
-map function, 11
+map function, 11, 31
math module, 7
memoryviews, 29
metaclass attribute, 32
@@ -113,7 +113,7 @@
random module, 8
ranges, 3
recursion, 13
-reduce function, 11
+reduce function, 11, 31
regular expressions, 5-6
requests library, 35, 36
main function, 1, 41
-map function, 11
+map function, 11, 31
math module, 7
memoryviews, 29
metaclass attribute, 32
@@ -117,7 +117,7 @@
random module, 8
ranges, 3
recursion, 13
-reduce function, 11
+reduce function, 11, 31
regular expressions, 5-6
requests library, 35, 36