Skip to content

Commit

Permalink
remove extraneous property (#3459)
Browse files Browse the repository at this point in the history
fixes #3455
  • Loading branch information
alexlamsl committed Oct 9, 2019
1 parent 6db880e commit a0d4b64
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -837,11 +837,10 @@ var AST_String = DEFNODE("String", "value quote", {
}
}, AST_Constant);

var AST_Number = DEFNODE("Number", "value literal", {
var AST_Number = DEFNODE("Number", "value", {
$documentation: "A number literal",
$propdoc: {
value: "[number] the numeric value",
literal: "[string] numeric value as string (optional)"
}
}, AST_Constant);

Expand Down

0 comments on commit a0d4b64

Please sign in to comment.