From 5161475844835bbd3236529f4b1eadc198f08a85 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Fri, 6 May 2022 05:04:45 -0400 Subject: [PATCH] Use true/false for keepSubscriptions documentation. (#18131) Now that we support using true and false for booleans on the chip-tool command line, the docs should suggest that. --- examples/chip-tool/commands/clusters/ReportCommand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chip-tool/commands/clusters/ReportCommand.h b/examples/chip-tool/commands/clusters/ReportCommand.h index 2b5dbd756ba506..98ae546af1de22 100644 --- a/examples/chip-tool/commands/clusters/ReportCommand.h +++ b/examples/chip-tool/commands/clusters/ReportCommand.h @@ -534,7 +534,7 @@ class SubscribeEvent : public ReportCommand AddArgument("max-interval", 0, UINT16_MAX, &mMaxInterval, 0, "The requested maximum interval between reports. Sets MaxIntervalCeiling in the Subscribe Request."); AddArgument("keepSubscriptions", 0, 1, &mKeepSubscriptions, - "0 - Terminate existing subscriptions from initiator.\n 1 - Otherwise."); + "false - Terminate existing subscriptions from initiator.\n true - Leave existing subscriptions in place."); AddArgument("event-min", 0, UINT64_MAX, &mEventNumber); ReportCommand::AddArguments(); }