Skip to content

Commit 9fc4928

Browse files
committed
chore: make document clearer
Signed-off-by: rocksload <[email protected]>
1 parent e9c6db0 commit 9fc4928

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,20 +112,20 @@ following buttons :
112112
- Step over : Resume the execution until next line, or go one level up if the
113113
end of the current
114114
scope is reached.
115-
- Step into : Resume the execution to go inside the immediatly next function
115+
- Step into : Resume the execution to go inside the immediately next function
116116
call if any, otherwise
117117
step to next line.
118118
- Step out : Resume the execution until the end of the scope is reached.
119-
- Restart : Kill the program and start a new debuging session.
119+
- Restart : Kill the program and start a new debugging session.
120120
- Stop : Kill the program and end debugin session.
121121

122122
Breakpoints stay between debugging sessions. When multiple function calls are
123123
made on the same line,
124-
multiple step into, step out, step into, ... can be requiered to go inside one
124+
multiple step into, step out, step into, ... can be required to go inside one
125125
of the chained
126126
calls.
127127

128-
When paused, content of variables is showed in the debuging tab of VSCode. Some
128+
When paused, content of variables is showed in the debugging tab of VSCode. Some
129129
basic types are
130130
displayed correctly (primitive types, Vec, Arc) but more complex types such as
131131
HashMap/BTreeMap

tests/tests/pallets/test_bfc_staking.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1552,7 +1552,7 @@ describeDevNode('pallet_bfc_staking - candidate leave', (context) => {
15521552
const extrinsicResult = await getExtrinsicResult(context, 'bfcStaking', 'scheduleLeaveCandidates');
15531553
expect(extrinsicResult).equal('CannotLeaveIfControllerSetRequested');
15541554

1555-
// cancel request for continueing tests
1555+
// cancel request for continuing tests
15561556
await context.polkadotApi.tx.bfcStaking
15571557
.cancelControllerSet()
15581558
.signAndSend(baltathar, { nonce: -1 });
@@ -1576,7 +1576,7 @@ describeDevNode('pallet_bfc_staking - candidate leave', (context) => {
15761576
const extrinsicResult = await getExtrinsicResult(context, 'bfcStaking', 'scheduleLeaveCandidates');
15771577
expect(extrinsicResult).equal('CannotLeaveIfCommissionSetRequested');
15781578

1579-
// cancel request for continueing tests
1579+
// cancel request for continuing tests
15801580
await context.polkadotApi.tx.bfcStaking
15811581
.cancelValidatorCommissionSet()
15821582
.signAndSend(baltathar, { nonce: -1 });

0 commit comments

Comments
 (0)