Skip to content

Commit eaf712c

Browse files
committed
lint: codespell 2.1.0
1 parent 323d4c0 commit eaf712c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ci/lint/04_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ${CI_RETRY_EXE} apt-get install -y clang-format-9 python3-pip curl git gawk jq
1111
update-alternatives --install /usr/bin/clang-format clang-format "$(which clang-format-9 )" 100
1212
update-alternatives --install /usr/bin/clang-format-diff clang-format-diff "$(which clang-format-diff-9)" 100
1313

14-
${CI_RETRY_EXE} pip3 install codespell==2.0.0
14+
${CI_RETRY_EXE} pip3 install codespell==2.1.0
1515
${CI_RETRY_EXE} pip3 install flake8==3.8.3
1616
${CI_RETRY_EXE} pip3 install mypy==0.910
1717
${CI_RETRY_EXE} pip3 install pyzmq==22.3.0

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ case $host in
361361
esac
362362

363363
if test "$enable_debug" = "yes"; then
364-
dnl If debugging is enabled, and the user hasn't overriden CXXFLAGS, clear
364+
dnl If debugging is enabled, and the user hasn't overridden CXXFLAGS, clear
365365
dnl them, to prevent autoconfs "-g -O2" being added. Otherwise we'd end up
366366
dnl with "-O0 -g3 -g -O2".
367367
if test "$CXXFLAGS_overridden" = "no"; then
@@ -857,7 +857,7 @@ if test "$use_lcov" = "yes"; then
857857
[AC_MSG_ERROR([lcov testing requested but --coverage linker flag does not work])])
858858
AX_CHECK_COMPILE_FLAG([--coverage],[CORE_CXXFLAGS="$CORE_CXXFLAGS --coverage"],
859859
[AC_MSG_ERROR([lcov testing requested but --coverage flag does not work])])
860-
dnl If coverage is enabled, and the user hasn't overriden CXXFLAGS, clear
860+
dnl If coverage is enabled, and the user hasn't overridden CXXFLAGS, clear
861861
dnl them, to prevent autoconfs "-g -O2" being added. Otherwise we'd end up
862862
dnl with "--coverage -Og -O0 -g -O2".
863863
if test "$CXXFLAGS_overridden" = "no"; then

doc/build-openbsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Run the following as root to install the base dependencies for building.
1111

1212
```bash
1313
pkg_add bash git gmake libevent libtool boost
14-
# Select the newest version of the follow packages:
14+
# Select the newest version of the following packages:
1515
pkg_add autoconf automake python
1616
```
1717

src/wallet/coinselection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ struct OutputGroup
225225
[[nodiscard]] CAmount GetSelectionWaste(const std::set<COutput>& inputs, CAmount change_cost, CAmount target, bool use_effective_value = true);
226226

227227

228-
/** Chooose a random change target for each transaction to make it harder to fingerprint the Core
228+
/** Choose a random change target for each transaction to make it harder to fingerprint the Core
229229
* wallet based on the change output values of transactions it creates.
230230
* The random value is between 50ksat and min(2 * payment_value, 1milsat)
231231
* When payment_value <= 25ksat, the value is just 50ksat.

0 commit comments

Comments
 (0)