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!
This commit is contained in:
Shashank Rajesh 2018-10-18 18:05:10 -04:00 committed by GitHub
parent 758b24ce5c
commit 61e825b042
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: