From 84a37646c1957e246ec307423ab97113523c8b2a Mon Sep 17 00:00:00 2001 From: lrnzo Date: Mon, 11 Mar 2019 21:23:14 +0100 Subject: [PATCH] small typo fixes --- package/gluon-hoodselector/luasrc/usr/sbin/hoodselector | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package/gluon-hoodselector/luasrc/usr/sbin/hoodselector b/package/gluon-hoodselector/luasrc/usr/sbin/hoodselector index 2ed74440..19b469f4 100755 --- a/package/gluon-hoodselector/luasrc/usr/sbin/hoodselector +++ b/package/gluon-hoodselector/luasrc/usr/sbin/hoodselector @@ -30,9 +30,9 @@ if not ok then end -- geolocation mode --- If we have a location we will try to select the domain coresponding to this location. +-- If we have a location we will try to select the domain corresponding to this location. -- If no domain for the location has been defined or if we can't determine the node's location, --- we will select the default domain as last fallback instanc. +-- we will select the default domain as last fallback instance. local geo = hoodutil.get_geolocation() if geo.lat ~= nil and geo.lon ~= nil then io.stdout:write('Position found. Enter "geolocation mode" ...\n') @@ -45,9 +45,9 @@ if geo.lat ~= nil and geo.lon ~= nil then end return end - io.stdout:write('No domain has been defined for the current position. Continure with default domain mode\n') + io.stdout:write('No domain has been defined for the current position. Continue with default domain mode\n') else - io.stdout:write('No position found. Continure with default domain mode\n') + io.stdout:write('No position found. Continue with default domain mode\n') end -- default domain mode