Skip to content

Commit

Permalink
Fix typo in option help
Browse files Browse the repository at this point in the history
  • Loading branch information
dechamps committed Apr 14, 2022
1 parent 281964d commit da2ca43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LGTVDeviceListener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace LGTVDeviceListener {
cxxoptsOptions.add_options()
("h,help", "Show this help message", ::cxxopts::value(options.showHelp))
("url", "URL of the LGTV websocket. For example `ws://192.168.1.42:3000`. If not specified, log device events only", ::cxxopts::value(options.url))
("client-key-file", R"(Path to the file holding the LGTV client key. If the file doesn't exist, a new client key will be registered and written to the file (default: %ProgramData%\LGTVDeviceListener.client-key)", ::cxxopts::value(options.clientKeyFile))
("client-key-file", R"(Path to the file holding the LGTV client key. If the file doesn't exist, a new client key will be registered and written to the file (default: %ProgramData%\LGTVDeviceListener.client-key))", ::cxxopts::value(options.clientKeyFile))
("device-name", R"(The name of the device to watch. Typically starts with `\\?\`. If not specified, log device events only)", ::cxxopts::value(options.deviceName))
("add-input", "Which TV input to switch to when the device is added. For example `HDMI_1`. If not specified, does nothing on add", ::cxxopts::value(options.addInput))
("remove-input", "Which TV input to switch to when the device is removed. For example `HDMI_2`. If not specified, does nothing on remove", ::cxxopts::value(options.removeInput))
Expand Down

0 comments on commit da2ca43

Please sign in to comment.