Small clarification to description of batch_by_properties

This commit is contained in:
Grant Sanderson 2018-06-11 10:40:17 -07:00
parent 80dd37f763
commit 2beb1d1220

View file

@ -42,7 +42,8 @@ def batch_by_property(items, property_func):
Takes in a list, and returns a list of tuples, (batch, prop)
such that all items in a batch have the same output when
put into property_func, and such that chaining all these
batches together would give the original list.
batches together would give the original list (i.e. order is
preserved)
"""
batch_prop_pairs = []