From 6df5889ed0aab9f0b1877baa1dbe28207102cd43 Mon Sep 17 00:00:00 2001 From: Graeme McCutcheon Date: Wed, 9 Oct 2013 17:13:32 +0100 Subject: [PATCH] Fix typo: s/filp/flip --- .../markdown/Objects, Mutation, and State/recipes/get-with.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manuscript/markdown/Objects, Mutation, and State/recipes/get-with.md b/manuscript/markdown/Objects, Mutation, and State/recipes/get-with.md index c65a217..c197016 100644 --- a/manuscript/markdown/Objects, Mutation, and State/recipes/get-with.md +++ b/manuscript/markdown/Objects, Mutation, and State/recipes/get-with.md @@ -47,10 +47,10 @@ Why is this called `getWith`? Consider this function that is common in languages return object[attr]; }; -You might ask, "Why use a function instead of just using `[]`?" The answer is, we can manipulate functions in ways that we can't manipulate syntax. For example, do you remember from [filp](#flip) that we can define `mapWith` from `map`? +You might ask, "Why use a function instead of just using `[]`?" The answer is, we can manipulate functions in ways that we can't manipulate syntax. For example, do you remember from [flip](#flip) that we can define `mapWith` from `map`? var mapWith = flip(map); We can do the same thing with `getWith`, and that's why it's named in this fashion: - var getWith = flip(get) \ No newline at end of file + var getWith = flip(get)