diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-03-28 21:16:54 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-04-08 13:00:59 +0200 |
commit | d417260aab89d51d781b7956d79e8c3d36af2032 (patch) | |
tree | feb4763bd5545695a51e140932d550af6fcf8757 /doc | |
parent | 4bae3c4dc02cc133c2ec7fae1ecb1f9a4d9c4865 (diff) | |
download | u-boot-d417260aab89d51d781b7956d79e8c3d36af2032.zip u-boot-d417260aab89d51d781b7956d79e8c3d36af2032.tar.gz u-boot-d417260aab89d51d781b7956d79e8c3d36af2032.tar.bz2 |
doc: missing :: in doc/usage/cmd/itest.rst
Add :: for correct formatting of example.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/usage/cmd/itest.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/usage/cmd/itest.rst b/doc/usage/cmd/itest.rst index ab933db..9c307fb 100644 --- a/doc/usage/cmd/itest.rst +++ b/doc/usage/cmd/itest.rst @@ -86,6 +86,8 @@ Numbers will be truncated according to the postfix before comparing: Postfix .s causes a string compare. The string '0xa1234' is alphabetically smaller than '0xb'. +:: + => if itest.s 0xa1234 < 0xb; then echo true; else echo false; fi true |