From 4b3b53ad114d9b7a2af95b7d1228604341949a6f Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 29 Aug 2022 12:38:42 +0100 Subject: [PATCH] docs(curry-entries): Fix typo, add missing "m" --- subjects/curry-entries/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/curry-entries/README.md b/subjects/curry-entries/README.md index 20cd786d..59d97f09 100644 --- a/subjects/curry-entries/README.md +++ b/subjects/curry-entries/README.md @@ -40,7 +40,7 @@ mapCurry(([k, v]) => [`${k}_force`, v])(personnel) } ``` -Create `reduceCurry`, which replicates the `.reduce` method (but fro an object). The first entry is the function, and the second is the object and initial value). +Create `reduceCurry`, which replicates the `.reduce` method (but from an object). The first entry is the function, and the second is the object and initial value). ```js reduceCurry((acc, [k, v]) => (acc += v))({ a: 1, b: 2, c: 3 }, 0)