Fixed object variable user.go() to be obj.go() (#1498)

Fixed object variable user.go() to be obj.go()
This commit is contained in:
Alexey Pyltsyn 2019-10-22 10:34:17 +03:00 committed by GitHub
commit 91510794f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ importance: 3
# Explain the value of "this"
In the code below we intend to call `user.go()` method 4 times in a row.
In the code below we intend to call `obj.go()` method 4 times in a row.
But calls `(1)` and `(2)` works differently from `(3)` and `(4)`. Why?