Index: src/arraybuffer.js |
diff --git a/src/arraybuffer.js b/src/arraybuffer.js |
index 07924e4b818952dab5a3378b17c058a5a8b1f143..796017fd2b14639d146f9d72ce06efed16c01377 100644 |
--- a/src/arraybuffer.js |
+++ b/src/arraybuffer.js |
@@ -40,7 +40,7 @@ function ArrayBufferConstructor(length) { // length = 1 |
} |
} |
-function ArrayBufferGetByteLength() { |
+function ArrayBufferGetByteLen() { |
if (!IS_ARRAYBUFFER(this)) { |
throw MakeTypeError('incompatible_method_receiver', |
['ArrayBuffer.prototype.byteLength', this]); |
@@ -99,7 +99,7 @@ function SetUpArrayBuffer() { |
// Set up the constructor property on the ArrayBuffer prototype object. |
%SetProperty($ArrayBuffer.prototype, "constructor", $ArrayBuffer, DONT_ENUM); |
- InstallGetter($ArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLength); |
+ InstallGetter($ArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLen); |
InstallFunctions($ArrayBuffer, DONT_ENUM, $Array( |
"isView", ArrayBufferIsView |