From 06d1b730b703a1a3d3bef27643024c481612243e Mon Sep 17 00:00:00 2001 From: cloudclaim <824973921@qq.com> Date: Sat, 28 Jun 2025 20:33:14 +0800 Subject: [PATCH] chore: fix some minor issues in the comments Signed-off-by: cloudclaim <824973921@qq.com> --- electrum/gui/messages.py | 2 +- electrum/gui/qml/components/ReceiveDetailsDialog.qml | 2 +- electrum/plugins/timelock_recovery/qt.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/electrum/gui/messages.py b/electrum/gui/messages.py index d7a66dce1..fc6fc36a5 100644 --- a/electrum/gui/messages.py +++ b/electrum/gui/messages.py @@ -117,7 +117,7 @@ MSG_CONNECTMODE_ONESERVER = _('Connect only to a single server') MSG_CONNECTMODE_SERVER_HELP = _( "Electrum connects to a unique server in order to receive your transaction history. " - "This server will learn your wallet adddresses." + "This server will learn your wallet addresses." ) MSG_CONNECTMODE_NODES_HELP = _( "In addition to your history server, Electrum will try to maintain connections with ~10 extra servers, in order to download block headers and find out the longest blockchain. " diff --git a/electrum/gui/qml/components/ReceiveDetailsDialog.qml b/electrum/gui/qml/components/ReceiveDetailsDialog.qml index cc0ba0d47..136af00a3 100644 --- a/electrum/gui/qml/components/ReceiveDetailsDialog.qml +++ b/electrum/gui/qml/components/ReceiveDetailsDialog.qml @@ -131,7 +131,7 @@ ElDialog { }) confirmdialog.open() } else { - // show error that amnt > 200k is neccessary to get zeroconf channel + // show error that amnt > 200k is necessary to get zeroconf channel var confirmdialog = app.messageDialog.createObject(dialog, { title: qsTr("Amount too low"), text: [qsTr("You don't have channels with enough inbound liquidity to receive this payment."), diff --git a/electrum/plugins/timelock_recovery/qt.py b/electrum/plugins/timelock_recovery/qt.py index ab35a7405..7a7dc032c 100644 --- a/electrum/plugins/timelock_recovery/qt.py +++ b/electrum/plugins/timelock_recovery/qt.py @@ -515,7 +515,7 @@ class Plugin(TimelockRecoveryPlugin): line_number += 1 grid.setRowStretch(line_number, 1) - # Create butttons + # Create buttons recovery_menu = QMenu() action = QAction('Save as PDF', recovery_menu) action.triggered.connect(partial(self._save_recovery_plan_pdf, context, download_dialog))