Skip to content

Commit b70f949

Browse files
authored
grammatical fix
1 parent 4fdf4c3 commit b70f949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/10-bind/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ sayHi(); // Hello, John!
167167
setTimeout(sayHi, 1000); // Hello, John!
168168

169169
// even if the value of user changes within 1 second
170-
// sayHi uses the pre-bound value which is reference to old user object
170+
// sayHi uses the pre-bound value which is reference to the old user object
171171
user = {
172172
sayHi() { alert("Another user in setTimeout!"); }
173173
};

0 commit comments

Comments
 (0)