diff options
| author | blob1807 <12388588+blob1807@users.noreply.github.com> | 2024-03-04 21:20:13 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-04 21:20:13 +1000 |
| commit | b419615002e55e968c2caf2319df5044effc90c4 (patch) | |
| tree | b6f5125fdb8bde783ecd3f0ac99a9fbe27df161c /core/encoding | |
| parent | 116edb9052b9d16d3d286b6ada42b053260ba424 (diff) | |
Apply suggestions from code review
Fixing spelling mistakes pointed out & fixed by layton.
Co-authored-by: Laytan <laytanlaats@hotmail.com>
Diffstat (limited to 'core/encoding')
| -rw-r--r-- | core/encoding/json/marshal.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/encoding/json/marshal.odin b/core/encoding/json/marshal.odin index 8b3a2bd56..6440e3b30 100644 --- a/core/encoding/json/marshal.odin +++ b/core/encoding/json/marshal.odin @@ -51,9 +51,9 @@ Marshal_Options :: struct { // NOTE: This will temp allocate and sort a list for each map. sort_maps_by_key: bool, - // Output enum value's name instead of its underlineing value. + // Output enum value's name instead of its underlying value. // - // NOTE: If a name isn't found it'll use the underlineing value. + // NOTE: If a name isn't found it'll use the underlying value. use_enum_names: bool, // Internal state |