Skip to content

Commit

Permalink
Fix help text for --json_(null|false)_value
Browse files Browse the repository at this point in the history
  • Loading branch information
blahgeek committed Jan 7, 2024
1 parent d3b9c98 commit ba3e8f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ struct Cli {
json_object_type: bytecode::ObjectType,

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

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

Expand Down

0 comments on commit ba3e8f4

Please sign in to comment.