From 0030a43cabe9f4ab5f028232ef94180684ebd43e Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 30 Apr 2020 16:29:32 +0200 Subject: [PATCH] Implement review suggestions --- profile/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile/config.go b/profile/config.go index 6a7fc56d..4464a513 100644 --- a/profile/config.go +++ b/profile/config.go @@ -257,7 +257,7 @@ Examples: err = config.Register(&config.Option{ Name: "Block Scope Local", Key: CfgOptionBlockScopeLocalKey, - Description: "Block connections internally on own device, ie. localhost.", + Description: "Block internal connections on your own device, ie. localhost.", Order: cfgOptionBlockScopeLocalOrder, OptType: config.OptTypeInt, ExpertiseLevel: config.ExpertiseLevelExpert, @@ -279,7 +279,7 @@ Examples: Order: cfgOptionBlockScopeLANOrder, OptType: config.OptTypeInt, ExternalOptType: "security level", - DefaultValue: status.SecurityLevelsNormalAndExtreme, + DefaultValue: status.SecurityLevelsHighAndExtreme, ValidationRegex: "^(0|4|6|7)$", }) if err != nil {