Skip to content

Commit dce87c7

Browse files
authored
Fix typo in "super" keyword reference page (#37221)
Changed "seeked" to "sought"
1 parent dbd0228 commit dce87c7

File tree

1 file changed

+1
-1
lines changed
  • files/en-us/web/javascript/reference/operators/super

1 file changed

+1
-1
lines changed

files/en-us/web/javascript/reference/operators/super/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ obj2.method2(); // Logs "method 1"
175175

176176
### Methods that read super.prop do not behave differently when bound to other objects
177177

178-
Accessing `super.x` behaves like `Reflect.get(Object.getPrototypeOf(objectLiteral), "x", this)`, which means the property is always seeked on the object literal/class declaration's prototype, and unbinding and re-binding a method won't change the reference of `super`.
178+
Accessing `super.x` behaves like `Reflect.get(Object.getPrototypeOf(objectLiteral), "x", this)`, which means the property is always sought on the object literal/class declaration's prototype, and unbinding and re-binding a method won't change the reference of `super`.
179179

180180
```js
181181
class Base {

0 commit comments

Comments
 (0)