Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mholt committed Jan 22, 2014
1 parent 6cb6379 commit 5e67ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions json-to-go.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ function jsonToGo(json, typename)

function goType(val)
{
if (val === null) {
if (val === null)
return "interface{}";
}

switch (typeof val)
{
case "string":
Expand Down

0 comments on commit 5e67ff6

Please sign in to comment.