diff --git a/packages/documentation/copy/en/reference/Iterators and Generators.md b/packages/documentation/copy/en/reference/Iterators and Generators.md index d8abda1e4ef1..a8e0a41b6e4a 100644 --- a/packages/documentation/copy/en/reference/Iterators and Generators.md +++ b/packages/documentation/copy/en/reference/Iterators and Generators.md @@ -54,7 +54,7 @@ for (let i of list) { ``` Another distinction is that `for..in` operates on any object; it serves as a way to inspect properties on this object. -`for..of` on the other hand, is mainly interested in values of iterable objects. Built-in objects like `Map` and `Set` implement `Symbol.iterator` property allowing access to stored values. +`for..of` on the other hand, is mainly interested in values of iterable objects. Built-in objects like `Map` and `Set` implement the `Symbol.iterator` property, allowing access to stored values. ```ts let pets = new Set(["Cat", "Dog", "Hamster"]);