Greggman 4 years ago
parent
commit
4fd7f22e94
1 changed files with 1 additions and 1 deletions
  1. 1 1
      threejs/lessons/threejs-prerequisites.md

+ 1 - 1
threejs/lessons/threejs-prerequisites.md

@@ -283,7 +283,7 @@ loader.load((texture) => {
 });
 ```
 
-Arrow functions bind `this` of the context in which you create the arrow function.
+Arrow functions bind `this` to the context in which you create the arrow function.
 
 ```js
 const foo = (args) => {/* code */};