Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pmorelli92 committed Apr 29, 2021
1 parent 2d23f56 commit 13618d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type Person struct {
func main() {
p := Person{Age: 28}
bytes, _ := json.Marshal(p)
fmt.Println(string(bytes)) // {"name":"null","age":28}
fmt.Println(string(bytes)) // {"name":null,"age":28}
}
```

Expand Down

0 comments on commit 13618d4

Please sign in to comment.