From 3ed488e10f8630c9e0617aec98d2f95ade6ad5be Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Mon, 22 Feb 2021 15:09:23 +0100 Subject: [PATCH] chore(compose): regenerate README --- @vates/compose/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/@vates/compose/README.md b/@vates/compose/README.md index f7247e636..2bed27fcb 100644 --- a/@vates/compose/README.md +++ b/@vates/compose/README.md @@ -29,7 +29,9 @@ console.log(f(5)) // → 21 ``` -The first function is called with the context and all arguments of the composed function: +> The call context (`this`) of the composed function is forwarded to all functions. + +The first function is called with all arguments of the composed function: ```js const add = (x, y) => x + y