Skip to content

Commit 0fc06f1

Browse files
authored
docs(client/debug): correct debug raw-bytes command example (#21671)
1 parent 979f885 commit 0fc06f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/debug/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ func RawBytesCmd() *cobra.Command {
307307
Use: "raw-bytes <raw-bytes>",
308308
Short: "Convert raw bytes output (eg. [10 21 13 255]) to hex",
309309
Long: "Convert raw-bytes to hex.",
310-
Example: fmt.Sprintf("%s debug raw-bytes [72 101 108 108 111 44 32 112 108 97 121 103 114 111 117 110 100]", version.AppName),
310+
Example: fmt.Sprintf("%s debug raw-bytes '[72 101 108 108 111 44 32 112 108 97 121 103 114 111 117 110 100]'", version.AppName),
311311
Args: cobra.ExactArgs(1),
312312
RunE: func(_ *cobra.Command, args []string) error {
313313
stringBytes := args[0]

0 commit comments

Comments
 (0)