aboutsummaryrefslogtreecommitdiff
path: root/core/log
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-03-13 21:18:07 +0000
committergingerBill <bill@gingerbill.org>2021-03-13 21:18:07 +0000
commita60d22fefd957eeca7e7403c51e656dd552cad8b (patch)
tree1b0bccef7346012f0338d53f5aebaaa9e998ec56 /core/log
parent8123ff83a3ff7836a5abc7f28c63646f41a038e5 (diff)
Make trailing comma usage consistent
Diffstat (limited to 'core/log')
-rw-r--r--core/log/log.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/log/log.odin b/core/log/log.odin
index 93cca2a88..418ad617e 100644
--- a/core/log/log.odin
+++ b/core/log/log.odin
@@ -38,7 +38,7 @@ Options :: bit_set[Option];
Full_Timestamp_Opts :: Options{
.Date,
- .Time
+ .Time,
};
Location_Header_Opts :: Options{
.Short_File_Path,
@@ -48,7 +48,7 @@ Location_Header_Opts :: Options{
};
Location_File_Opts :: Options{
.Short_File_Path,
- .Long_File_Path
+ .Long_File_Path,
};