Skip to content

Commit b352a44

Browse files
committed
Remove backtick from command descriptions
1 parent c295220 commit b352a44

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: cli/device/delete.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func initDeleteCommand() *cobra.Command {
4646
nil,
4747
"Comma-separated list of tags with format <key>=<value>.\n"+
4848
"Delete all devices that match the provided tags.\n"+
49-
"Mutually exclusive with `--id`.",
49+
"Mutually exclusive with '--id'.",
5050
)
5151
return deleteCommand
5252
}

Diff for: cli/ota/massupload.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func initMassUploadCommand() *cobra.Command {
5252
massUploadCommand.Flags().StringToStringVar(&massUploadFlags.tags, "device-tags", nil,
5353
"Comma-separated list of tags with format <key>=<value>.\n"+
5454
"Perform an OTA upload on all devices that match the provided tags.\n"+
55-
"Mutually exclusive with `--device-ids`.",
55+
"Mutually exclusive with '--device-ids'.",
5656
)
5757
massUploadCommand.Flags().StringVarP(&massUploadFlags.file, "file", "", "", "Binary file (.bin) to be uploaded")
5858
massUploadCommand.Flags().BoolVar(&massUploadFlags.deferred, "deferred", false, "Perform a deferred OTA. It can take up to 1 week.")

Diff for: cli/thing/delete.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func initDeleteCommand() *cobra.Command {
4646
nil,
4747
"Comma-separated list of tags with format <key>=<value>.\n"+
4848
"Delete all things that match the provided tags.\n"+
49-
"Mutually exclusive with `--id`.",
49+
"Mutually exclusive with '--id'.",
5050
)
5151
return deleteCommand
5252
}

0 commit comments

Comments
 (0)