From 61e825b042cf9629a80469979cc846d39ae28047 Mon Sep 17 00:00:00 2001 From: Shashank Rajesh Date: Thu, 18 Oct 2018 18:05:10 -0400 Subject: [PATCH] Fixed grammatical typo. Singular case agreement error. Yes, all I did was remove an 's' from a word. What a great first contribution to an open source project! --- 1-js/04-object-basics/04-object-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/article.md b/1-js/04-object-basics/04-object-methods/article.md index f6e8728f..a93869ed 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -276,7 +276,7 @@ Looking closely, we may notice two operations in `obj.method()` statement: 1. First, the dot `'.'` retrieves the property `obj.method`. 2. Then parentheses `()` execute it. -So, how does the information about `this` gets passed from the first part to the second one? +So, how does the information about `this` get passed from the first part to the second one? If we put these operations on separate lines, then `this` will be lost for sure: