Skip to content

Commit ad62ed3

Browse files
committed
Add call_after to docs
1 parent aeb9b73 commit ad62ed3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,14 @@ We have a few steps available for chaining calls:
138138
This type of step is just an ordinary call of the function.
139139
If you haven't specified `param_name` argument, then the result
140140
of the previous step will be passed as the first argument of the function.
141-
Uf you did specify the `param_name` argument, then the result of the previous
141+
If you did specify the `param_name` argument, then the result of the previous
142142
step can be found in key word arguments with the param name you specified.
143143

144144
You can add sequential steps with `.call_next` method of the pipeline.
145145

146+
If you don't want to pass the result of the previous step to the next one,
147+
you can use `.call_after` method of the pipeline.
148+
146149
### Mapper step
147150

148151
This step runs specified task for each item of the previous task's result spawning

0 commit comments

Comments
 (0)