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

@@ -2,7 +2,7 @@ var Test = function () {
var Test = function Test() { };
Object.defineProperties(Test.prototype, {
test: {
writeable: true,
writable: true,
value: function () {
return 5 + 5;
}