Update explanations

Update explanation in digitize
Update explanation in delay
Update explanation in curry
Update explanation in compose_right
Update explanation in compose
This commit is contained in:
Angelos Chalaris
2020-01-03 12:55:08 +02:00
parent 48b44d95de
commit 0f36c17995
5 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ tags: function,intermediate
Performs right-to-left function composition.
Use `reduce()` to perform right-to-left function composition.
Use `functools.reduce()` to perform right-to-left function composition.
The last (rightmost) function can accept one or more arguments; the remaining functions must be unary.
```py