mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 23:16:05 +00:00
Fix typo in documentation of << and <<< operators
This commit is contained in:
parent
97d53814f9
commit
ce9f2dfa99
@ -141,9 +141,9 @@ static const char *help_detail_ae[] = {
|
||||
">", "", "compare for bigger",
|
||||
">", "=", "compare bigger for or equal",
|
||||
">>", "=", "shr ax, bx => bx,ax,>>= # shift right",
|
||||
"<<", "=", "shr ax, bx => bx,ax,<<= # shift left",
|
||||
"<<", "=", "shl ax, bx => bx,ax,<<= # shift left",
|
||||
">>>", "=", "ror ax, bx => bx,ax,>>>= # rotate right",
|
||||
"<<<", "=", "rol ax, bx => bx,ax,><<= # rotate left",
|
||||
"<<<", "=", "rol ax, bx => bx,ax,<<<= # rotate left",
|
||||
"?{", "", "if popped value != 0 run the block until }",
|
||||
"POP", "", "drops last element in the esil stack",
|
||||
"DUP", "", "duplicate last value in stack",
|
||||
|
Loading…
Reference in New Issue
Block a user