diff options
| author | gingerBill <bill@gingerbill.org> | 2021-03-13 21:18:07 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-03-13 21:18:07 +0000 |
| commit | a60d22fefd957eeca7e7403c51e656dd552cad8b (patch) | |
| tree | 1b0bccef7346012f0338d53f5aebaaa9e998ec56 /core/encoding/json | |
| parent | 8123ff83a3ff7836a5abc7f28c63646f41a038e5 (diff) | |
Make trailing comma usage consistent
Diffstat (limited to 'core/encoding/json')
| -rw-r--r-- | core/encoding/json/types.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/json/types.odin b/core/encoding/json/types.odin index 9b3124369..d016cf560 100644 --- a/core/encoding/json/types.odin +++ b/core/encoding/json/types.odin @@ -24,7 +24,7 @@ Value :: struct { String, Array, Object, - } + }, } Pos :: struct { |