From 5e23045f0d6f110abae732f05eb1ddd3203e1bfc Mon Sep 17 00:00:00 2001 From: Jennie Kim Date: Sun, 12 Oct 2014 15:46:30 -0700 Subject: [PATCH] two typos in lines 28, 32 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e386f3e..dcce58d 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,11 @@ Imagine now that we have more than one kind of relationship in our app, we have - Create a variable called `relationships` assign it to an empty object. - Add your `friends` data structure to the `relationships` object. -- Inspect your object. What is it's "length"? +- Inspect your object. What is its "length"? - Create a variable called `matches` and assign it to an empty array. - Add the `matches` array to the `relationships` object. It should look like this: - `relationships = { friends: ['duck', 'camel'], matches: []}` -- Using the `relationships` object, add at at least one `username` to `matches` +- Using the `relationships` object, add at least one `username` to `matches` - Hint: the matches array is now nested inside the `relationships` object! - Inspect your object. Is the `matches` array now populated with some lucky animal? - Loop through your `animals` collection, adding the `relationships` object to each animal object. Name the property `relationships`.