summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-03 22:08:14 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-03 22:08:14 -0500
commit4007253649425ff37a503ea77cff2155ab9814ef (patch)
tree72cd40904068ee552def13ad3e99e59ed35e2748 /colors.h
parenta566e529522940f011aa1fa08d44753b6bea9562 (diff)
fixed command line argument with / in it windows
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/colors.h b/colors.h
index e2ac2af..28f9951 100644
--- a/colors.h
+++ b/colors.h
@@ -71,7 +71,7 @@ static ColorName const color_names[COLOR_COUNT] = {
};
static ColorSetting color_setting_from_str(char const *str) {
- // @OPTIM: sort color_names, binary search
+ // @OPTIMIZE: sort color_names, binary search
for (int i = 0; i < COLOR_COUNT; ++i) {
ColorName const *n = &color_names[i];
if (streq(n->name, str))