Browse Source

add missing comma

blob1807 1 year ago
parent
commit
b39ef29ec6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/encoding/json/marshal.odin

+ 1 - 1
core/encoding/json/marshal.odin

@@ -52,7 +52,7 @@ Marshal_Options :: struct {
 	sort_maps_by_key: bool,
 
     // Output enum value's name instead of its underlineing value
-    use_enum_value_names: bool
+    use_enum_value_names: bool,
 
 	// Internal state
 	indentation: int,