diff options
author | Denys Vlasenko | 2021-02-26 21:20:18 +0100 |
---|---|---|
committer | Denys Vlasenko | 2021-02-26 21:20:18 +0100 |
commit | 9b6bcfda0e11c0e73a966a77110f6c68425cff34 (patch) | |
tree | be484881879a4fa5d905bd30a0f628b3d04f41d7 /miscutils | |
parent | 9037757c5fde77d74e24e100efd70420a51c5d95 (diff) | |
download | busybox-9b6bcfda0e11c0e73a966a77110f6c68425cff34.zip busybox-9b6bcfda0e11c0e73a966a77110f6c68425cff34.tar.gz |
bc: typo fix in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/bc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 934a1f8..553d0f4 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -152,7 +152,7 @@ //////// "\nr - DC_LEX_SWAP swap top-of-stack //////// "\n:r - DC_LEX_COLON pop index, pop value, store to array 'r' //////// "\n;r - DC_LEX_SCOLON pop index, fetch from array 'r', push -//////// "\nLr - DC_LEX_LOAD_PO, pop register 'r', push +//////// "\nLr - DC_LEX_LOAD_POP pop register 'r', push //////// "\nSr - DC_LEX_STORE_PUSH pop, push to register 'r' //////// "\nlr - DC_LEX_LOAD read register 'r', push //////// "\nsr - DC_LEX_OP_ASSIGN pop, assign to register 'r' |