diff --git a/files/en-us/web/javascript/inheritance_and_the_prototype_chain/index.html b/files/en-us/web/javascript/inheritance_and_the_prototype_chain/index.html
index fb906dae6714a77..ee8599743e11fb6 100644
--- a/files/en-us/web/javascript/inheritance_and_the_prototype_chain/index.html
+++ b/files/en-us/web/javascript/inheritance_and_the_prototype_chain/index.html
@@ -113,7 +113,7 @@
Using prototypes in JavaScript
console.log( doSomething.prototype );
// It does not matter how you declare the function; a
// function in JavaScript will always have a default
-// prototype property — with one one exception: an arrow
+// prototype property — with one exception: an arrow
// function doesn't have a default prototype property:
const doSomethingFromArrowFunction = () => {};
console.log( doSomethingFromArrowFunction.prototype );