Skip to content

Commit 7ee5c3c

Browse files
committed
Fix a few likely documentation typos
1 parent 0c90fc6 commit 7ee5c3c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/build-windows-msvc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ cmake --list-presets
4646

4747
CMake will put the resulting object files, libraries, and executables into a dedicated build directory.
4848

49-
In following istructions, the "Debug" configuration can be specified instead of the "Release" one.
49+
In the following instructions, the "Debug" configuration can be specified instead of the "Release" one.
5050

5151
### 4. Building with Dynamic Linking with GUI
5252

src/test/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ during the generation of the Bitcoin Core build system
1717
and tests weren't explicitly disabled.
1818

1919
Assuming the build directory is named `build`, the unit tests can be run
20-
with `ctests --test-dir build`, which includes unit tests from subtrees.
20+
with `ctest --test-dir build`, which includes unit tests from subtrees.
2121

2222
To run the unit tests manually, launch `build/src/test/test_bitcoin`. To recompile
2323
after a test file was modified, run `cmake --build build` and then run the test again. If you
@@ -83,7 +83,7 @@ so no leftover state is used.)
8383

8484
```bash
8585
$ build/src/test/test_bitcoin --run_test=getarg_tests/doubledash -- -testdatadir=/somewhere/mydatadir
86-
Test directory (will not be deleted): "/somewhere/mydatadir/test_common_Bitcoin Core/getarg_tests/doubledash/datadir
86+
Test directory (will not be deleted): "/somewhere/mydatadir/test_common_Bitcoin Core/getarg_tests/doubledash/datadir"
8787
Running 1 test case...
8888

8989
*** No errors detected
@@ -112,8 +112,8 @@ see `uint256_tests.cpp`.
112112

113113
### Logging and debugging in unit tests
114114

115-
`ctest --test-dir build` will write to a log file `build/Testing/Temporary/LastTest.log`. You can
116-
additionaly use the `--output-on-failure` option to display logs of the failed tests automatically
115+
`ctest --test-dir build` will write to the log file `build/Testing/Temporary/LastTest.log`. You can
116+
additionally use the `--output-on-failure` option to display logs of the failed tests automatically
117117
on failure. For running individual tests verbosely, refer to the section
118118
[above](#running-individual-tests).
119119

@@ -150,5 +150,5 @@ You can then explore the core dump using
150150
```bash
151151
gdb build/src/test/test_bitcoin core
152152

153-
(gbd) bt # produce a backtrace for where a segfault occurred
153+
(gdb) bt # produce a backtrace for where a segfault occurred
154154
```

0 commit comments

Comments
 (0)