Skip to content

Commit 369accd

Browse files
committed
fixed other references to incorrect method name
1 parent e612b94 commit 369accd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/getting_started/simple_builder.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
A `Builder` is a class that inherits from `maggma.core.Builder` and implement 3 methods:
66

7-
* `get_items`: This method should return some iterable of items to run through `process_items`
7+
* `get_items`: This method should return some iterable of items to run through `process_item`
88
* `process_item`: This method should take a single item, process it, and return the processed item
99
* `update_targets`: This method should take a list of processed items and update the target stores.
1010

@@ -141,8 +141,8 @@ Finally, we have to put the processed item in to the target store:
141141

142142

143143
!!! note
144-
Note that whatever `process_items` returns, `update_targets` takes a `List` of these:
145-
For instance, if `process_items` returns `str`, then `update_targets` would look like:
144+
Note that whatever `process_item` returns, `update_targets` takes a `List` of these:
145+
For instance, if `process_item` returns `str`, then `update_targets` would look like:
146146
``` python
147147

148148
def update_target(self,items: List[str]):

0 commit comments

Comments
 (0)