Skip to content

Commit ba3e8f4

Browse files
committed
Fix help text for --json_(null|false)_value
1 parent d3b9c98 commit ba3e8f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ struct Cli {
2424
json_object_type: bytecode::ObjectType,
2525

2626
#[arg(long, default_value = "nil",
27-
help = "Which lisp value is used to represent a JSON null value. Support :SYMBOL or nil.\nMust match what lsp client expects.\n")]
27+
help = "Which lisp value is used to represent a JSON null value. Support :keyword or nil.\nMust match what lsp client expects.\n")]
2828
json_null_value: bytecode::LispObject,
2929

3030
#[arg(long, default_value = "nil",
31-
help = "Which lisp value is used to represent a JSON false value. Support :SYMBOL or nil.\nMust match what lsp client expects.\n")]
31+
help = "Which lisp value is used to represent a JSON false value. Support :keyword or nil.\nMust match what lsp client expects.\n")]
3232
json_false_value: bytecode::LispObject,
3333
}
3434

0 commit comments

Comments
 (0)