Skip to content

Commit 0bac930

Browse files
committed
Help: fix typo
1 parent 7bcb015 commit 0bac930

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/data/help.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,13 +471,15 @@
471471
{
472472
"long": "set",
473473
"desc": "Hard set the value of a key",
474+
"remark": "Deprecated. Use \"Custom\" module instead",
474475
"arg": {
475476
"type": "key=value"
476477
}
477478
},
478479
{
479480
"long": "set-keyless",
480481
"desc": "Hard set the value of a key, but don't print the key or the separator",
482+
"remark": "Deprecated. Use \"Custom\" module instead",
481483
"arg": {
482484
"type": "key=value"
483485
}
@@ -517,7 +519,7 @@
517519
"enum": {
518520
"IEC": "1024 Bytes = 1 KiB, 1024 KiB = 1 MiB, ...",
519521
"SI": "1000 Bytes = 1 KB, 1000 KB = 1 MB, ...",
520-
"JEDEC": "1024 Bytes = 1 kB, 1024 K = 1 MB, ..."
522+
"JEDEC": "1024 Bytes = 1 kB, 1024 kB = 1 MB, ..."
521523
},
522524
"default": "IEC"
523525
}

src/options/display.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ typedef enum FFBinaryPrefixType
66
{
77
FF_BINARY_PREFIX_TYPE_IEC, // 1024 Bytes = 1 KiB, 1024 KiB = 1 MiB, ... (standard)
88
FF_BINARY_PREFIX_TYPE_SI, // 1000 Bytes = 1 KB, 1000 KB = 1 MB, ...
9-
FF_BINARY_PREFIX_TYPE_JEDEC, // 1024 Bytes = 1 kB, 1024 K = 1 MB, ...
9+
FF_BINARY_PREFIX_TYPE_JEDEC, // 1024 Bytes = 1 kB, 1024 kB = 1 MB, ...
1010
} FFBinaryPrefixType;
1111

1212
typedef enum FFTemperatureUnit

0 commit comments

Comments
 (0)