diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-12-05 22:08:33 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:25 +0100 |
commit | d700d131be31bd2838206bfc13ddd418affb185b (patch) | |
tree | 1d34cd6984b8f22b8df4414465cc7378c2eeed36 /gnu/installer/newt/user.scm | |
parent | cbeb27025f39694b8d12e07ee7e5ce8031690c4e (diff) |
installer: Make sure every sentence is dot terminated.
gnu/installer/newt/hostname.scm: Finish sentences by a dot.
gnu/installer/newt/network.scm: Ditto.
gnu/installer/newt/page.scm: Ditto.
gnu/installer/newt/partition.scm: Ditto.
gnu/installer/newt/user.scm: Ditto.
gnu/installer/newt/wifi.scm: Ditto.
Diffstat (limited to 'gnu/installer/newt/user.scm')
-rw-r--r-- | gnu/installer/newt/user.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/newt/user.scm b/gnu/installer/newt/user.scm index c043f53def..f65dbb30e5 100644 --- a/gnu/installer/newt/user.scm +++ b/gnu/installer/newt/user.scm @@ -72,7 +72,7 @@ title) (let ((error-page (lambda () - (run-error-page (G_ "Empty inputs are not allowed") + (run-error-page (G_ "Empty inputs are not allowed.") (G_ "Empty input"))))) (receive (exit-reason argument) (run-form form) |