From d17c5e155a4ea018556b6dd761f909a8fa367a7f Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Mon, 1 Aug 2022 18:03:48 +0200 Subject: [PATCH] Documentation: fix documentation of examinemem (#3087) The 'addr' option was removed during review and doesn't exist. Fixes #3086 --- Documentation/cli/README.md | 2 +- pkg/terminal/command.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/cli/README.md b/Documentation/cli/README.md index 92da65ad..88d65f4b 100644 --- a/Documentation/cli/README.md +++ b/Documentation/cli/README.md @@ -318,7 +318,7 @@ Examine memory: examinemem [-fmt ] [-count|-len ] [-size ]
examinemem [-fmt ] [-count|-len ] [-size ] -x -Format represents the data format and the value is one of this list (default hex): bin(binary), oct(octal), dec(decimal), hex(hexadecimal), addr(address). +Format represents the data format and the value is one of this list (default hex): bin(binary), oct(octal), dec(decimal), hex(hexadecimal). Length is the number of bytes (default 1) and must be less than or equal to 1000. Address is the memory location of the target to examine. Please note '-len' is deprecated by '-count and -size'. Expression can be an integer expression or pointer value of the memory location to examine. diff --git a/pkg/terminal/command.go b/pkg/terminal/command.go index bfa5ddc3..bc2a7ab1 100644 --- a/pkg/terminal/command.go +++ b/pkg/terminal/command.go @@ -524,7 +524,7 @@ Examine memory: examinemem [-fmt ] [-count|-len ] [-size ]
examinemem [-fmt ] [-count|-len ] [-size ] -x -Format represents the data format and the value is one of this list (default hex): bin(binary), oct(octal), dec(decimal), hex(hexadecimal), addr(address). +Format represents the data format and the value is one of this list (default hex): bin(binary), oct(octal), dec(decimal), hex(hexadecimal). Length is the number of bytes (default 1) and must be less than or equal to 1000. Address is the memory location of the target to examine. Please note '-len' is deprecated by '-count and -size'. Expression can be an integer expression or pointer value of the memory location to examine.