diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/override-inherited-methods.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/override-inherited-methods.english.md index 643c972534..1d22e5efe2 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/override-inherited-methods.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/override-inherited-methods.english.md @@ -8,7 +8,7 @@ forumTopicId: 301322 ## Description
-In previous lessons, you learned that an object can inherit its behavior (methods) from another object by cloning its prototype object: +In previous lessons, you learned that an object can inherit its behavior (methods) from another object by referencing its prototype object: ```js ChildObject.prototype = Object.create(ParentObject.prototype);