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);",