Explorar el Código

add missing comma

blob1807 hace 1 año
padre
commit
b39ef29ec6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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,