diff --git a/Object.create.js b/Object.create.js index 43bc81a..02b24e1 100644 --- a/Object.create.js +++ b/Object.create.js @@ -5,7 +5,7 @@ if (typeof Object.create !== 'function') { Object.create = function (o) { if (arguments.length !== 1) { - throw new Error('Object.crete polyfill only accept one parameter'); + throw new Error('Object.create polyfill only accepts one parameter'); } function F() {}