diff options
author | Meiyo Peng <meiyo@riseup.net> | 2019-04-27 15:40:51 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-29 09:48:40 +0200 |
commit | 772bcb1cf00720c150ea13303d5971afaaaca43a (patch) | |
tree | 742975c370ae919b161f169229f6c71c691804ab /gnu/installer | |
parent | c31bec88a818a0ee112e1e80222e7beffa463057 (diff) | |
download | patches-772bcb1cf00720c150ea13303d5971afaaaca43a.tar patches-772bcb1cf00720c150ea13303d5971afaaaca43a.tar.gz |
installer: Fix typo in docstring.
* gnu/installer/newt/wifi.scm (draw-scanning-page): Fix typo in docstring.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/newt/wifi.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/installer/newt/wifi.scm b/gnu/installer/newt/wifi.scm index 4cf5c128e7..da2f0b56d0 100644 --- a/gnu/installer/newt/wifi.scm +++ b/gnu/installer/newt/wifi.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com> +;;; Copyright © 2019 Meiyo Peng <meiyo@riseup.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -80,7 +81,7 @@ nmc_wifi_strength_bars." (message (G_ "Unable to find a wifi technology")))))))) (define (draw-scanning-page) - "Draw a page to indicate a wifi scan in in progress." + "Draw a page to indicate a wifi scan in progress." (draw-info-page (G_ "Scanning wifi for available networks, please wait.") (G_ "Scan in progress"))) |