Fixed grammar: who's -> whose

This commit is contained in:
Diego Traíd
2015-12-08 16:50:52 +01:00
parent 480283d6a0
commit 809dbaeabd

View File

@ -342,7 +342,7 @@
"title": "Prefilter JSON", "title": "Prefilter JSON",
"description": [ "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.", "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:", "Here's the code to do this:",
"<code>json = json.filter(function(val) {</code>", "<code>json = json.filter(function(val) {</code>",
"<code>&nbsp;&nbsp;return(val.id !== 1);</code>", "<code>&nbsp;&nbsp;return(val.id !== 1);</code>",