diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-26 21:20:18 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-26 21:20:18 +0100 |
commit | 9b6bcfda0e11c0e73a966a77110f6c68425cff34 (patch) | |
tree | be484881879a4fa5d905bd30a0f628b3d04f41d7 | |
parent | 9037757c5fde77d74e24e100efd70420a51c5d95 (diff) | |
download | busybox-w32-9b6bcfda0e11c0e73a966a77110f6c68425cff34.tar.gz busybox-w32-9b6bcfda0e11c0e73a966a77110f6c68425cff34.tar.bz2 busybox-w32-9b6bcfda0e11c0e73a966a77110f6c68425cff34.zip |
bc: typo fix in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 934a1f8ba..553d0f472 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -152,7 +152,7 @@ | |||
152 | //////// "\nr - DC_LEX_SWAP swap top-of-stack | 152 | //////// "\nr - DC_LEX_SWAP swap top-of-stack |
153 | //////// "\n:r - DC_LEX_COLON pop index, pop value, store to array 'r' | 153 | //////// "\n:r - DC_LEX_COLON pop index, pop value, store to array 'r' |
154 | //////// "\n;r - DC_LEX_SCOLON pop index, fetch from array 'r', push | 154 | //////// "\n;r - DC_LEX_SCOLON pop index, fetch from array 'r', push |
155 | //////// "\nLr - DC_LEX_LOAD_PO, pop register 'r', push | 155 | //////// "\nLr - DC_LEX_LOAD_POP pop register 'r', push |
156 | //////// "\nSr - DC_LEX_STORE_PUSH pop, push to register 'r' | 156 | //////// "\nSr - DC_LEX_STORE_PUSH pop, push to register 'r' |
157 | //////// "\nlr - DC_LEX_LOAD read register 'r', push | 157 | //////// "\nlr - DC_LEX_LOAD read register 'r', push |
158 | //////// "\nsr - DC_LEX_OP_ASSIGN pop, assign to register 'r' | 158 | //////// "\nsr - DC_LEX_OP_ASSIGN pop, assign to register 'r' |