Skip to content

Commit

Permalink
make the tests pass again. note to self: run tests, THEN commit…
Browse files Browse the repository at this point in the history
  • Loading branch information
hegemonic committed Sep 10, 2012
1 parent c8ce159 commit 735bbd9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rhino_modules/jsdoc/tag/type.js
Expand Up @@ -89,6 +89,6 @@ exports.parse = function(tagValue, canHaveName, canHaveType) {
optional: tagInfo.optional,
nullable: tagInfo.nullable,
variable: tagInfo.variable,
defaultvalue: tagInfo['default']
defaultvalue: tagInfo.defaultvalue
};
};
2 changes: 1 addition & 1 deletion rhino_modules/jsdoc/tag/type/closureCompilerType.js
Expand Up @@ -59,6 +59,6 @@ exports.parse = function(tagInfo) {
optional: tagInfo.optional || optional.optional, // don't override if already true
nullable: nullable.nullable,
variable: variable.variable,
'default': tagInfo['default']
defaultvalue: tagInfo.defaultvalue
};
};
2 changes: 1 addition & 1 deletion rhino_modules/jsdoc/tag/type/jsdocType.js
Expand Up @@ -35,6 +35,6 @@ exports.parse = function(tagInfo) {
optional: optional,
nullable: tagInfo.nullable,
variable: tagInfo.variable,
'default': tagDefault
defaultvalue: tagDefault
};
};

0 comments on commit 735bbd9

Please sign in to comment.