fix typo writable

s/writeable/writable
This commit is contained in:
ahomu
2014-10-13 17:18:56 +09:00
parent 92a7d1bcb9
commit 9f267e54a9
5 changed files with 6 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ var Test = function(Foo) {
Object.defineProperties(Test.prototype, {
test: {
writeable: true,
writable: true,
value: function() {
Foo.prototype.test.call(this);
@@ -43,7 +43,7 @@ var Test = function(Foo) {
Object.defineProperties(Test, {
foo: {
writeable: true,
writable: true,
value: function() {
Foo.foo.call(this);