Skip to content

Commit

Permalink
feat: use null for Null stringer value
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Jan 17, 2022
1 parent 0deeee4 commit 1941dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dec.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func (t Type) String() string {
case Number:
return "number"
case Null:
return "nil"
return "null"
case Bool:
return "bool"
case Array:
Expand Down

0 comments on commit 1941dd1

Please sign in to comment.