Commit 6ca5df8722738149d5db19727e26b2953975d317

Authored by Henry Schreiner
1 parent 911ee02f

docs: fix missing chars in README

Showing 1 changed file with 2 additions and 2 deletions
README.md
... ... @@ -351,8 +351,8 @@ Before parsing, you can set the following options:
351 351 `->capture_default_str()`: Store the current value attached and display it in the help string.
352 352 - `->default_function(std::string())`: Advanced: Change the function that `capture_default_str()` uses.
353 353 - `->always_capture_default()`: Always run `capture_default_str()` when creating new options. Only useful on an App's `option_defaults`.
354   -- `default_str(string)`: Set the default string directly. This string will also be used as a default value if no arguments are passed and the value is requested.
355   -- `default_val(value)`: ๐Ÿ†• Generate the default string from a value and validate that the value is also valid. For options that assign directly to a value type the value in that type is also updated. Value must be convertible to a string(one of known types or have a stream operator).
  354 +- `->default_str(string)`: Set the default string directly. This string will also be used as a default value if no arguments are passed and the value is requested.
  355 +- `->default_val(value)`: ๐Ÿ†• Generate the default string from a value and validate that the value is also valid. For options that assign directly to a value type the value in that type is also updated. Value must be convertible to a string(one of known types or have a stream operator).
356 356 - `->option_text(string)`: Sets the text between the option name and description.
357 357  
358 358  
... ...