From 2a0d84cc63b274d6d57f17c79f2a59090cef2f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Tra=C3=ADd?= Date: Tue, 8 Dec 2015 16:50:52 +0100 Subject: [PATCH] Fixed grammar: who's -> whose --- seed/challenges/json-apis-and-ajax.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/json-apis-and-ajax.json b/seed/challenges/json-apis-and-ajax.json index 091da3d76e..a5a93aa7f5 100644 --- a/seed/challenges/json-apis-and-ajax.json +++ b/seed/challenges/json-apis-and-ajax.json @@ -342,7 +342,7 @@ "title": "Prefilter JSON", "description": [ "If we don't want to render every cat photo we get from our Free Code Camp's Cat Photo JSON API, we can pre-filter the json before we loop through it.", - "Let's filter out the cat who's \"id\" key has a value of 1.", + "Let's filter out the cat whose \"id\" key has a value of 1.", "Here's the code to do this:", "json = json.filter(function(val) {", "  return(val.id !== 1);",