URI: 
       tfix typo - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 3af7920b63d2390e35f296169f485b7704605507
   DIR parent 1b0521cabd07689fcd83fac7254565adbc9b6072
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 14 Oct 2019 12:02:04 +0200
       
       fix typo
       
       Diffstat:
         M electrum/gui/kivy/main_window.py    |       2 +-
         M electrum/gui/qt/main_window.py      |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/electrum/gui/kivy/main_window.py b/electrum/gui/kivy/main_window.py
       t@@ -1086,7 +1086,7 @@ class ElectrumWindow(App):
                        self.show_info('This wallet has channels')
                else:
                    warning1 = _("Lightning support in Electrum is experimental. Do not put large amounts in lightning channels.")
       -            warning2 = _("Funds stored in lightning channels are not recoverable from your seed. You must backup your wallet file everytime you crate a new channel.")
       +            warning2 = _("Funds stored in lightning channels are not recoverable from your seed. You must backup your wallet file everytime you create a new channel.")
                    d = Question(_('Enable Lightning?') + '\n\n' + warning1 + '\n\n' + warning2, self._enable_lightning)
                    d.open()
        
   DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py
       t@@ -2401,7 +2401,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
        
            def enable_lightning(self):
                warning1 = _("Lightning support in Electrum is experimental. Do not put large amounts in lightning channels.")
       -        warning2 = _("Funds stored in lightning channels are not recoverable from your seed. You must backup your wallet file everytime you crate a new channel.")
       +        warning2 = _("Funds stored in lightning channels are not recoverable from your seed. You must backup your wallet file everytime you create a new channel.")
                r = self.question(_('Enable Lightning payments?') + '\n\n' + _('WARNINGS') + ': ' + '\n\n' + warning1 + '\n\n' + warning2)
                if not r:
                    return