Fix typo in documentation of << and <<< operators

This commit is contained in:
emvivre 2017-12-17 19:09:35 +01:00 committed by radare
parent 97d53814f9
commit ce9f2dfa99

View File

@ -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",