From 5a3b04bab2783691566f0f09a3d414ab31efb9ca Mon Sep 17 00:00:00 2001 From: fferro Date: Wed, 17 Jul 2024 10:58:41 +0100 Subject: [PATCH] cleanup --- config.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 4828c80..2df6e5c 100644 --- a/config.go +++ b/config.go @@ -8,7 +8,7 @@ // the host name to match on ("example.com"), and the second argument is the key // you want to retrieve ("Port"). The keywords are case insensitive. // -// port := ssh_config.Get("myhost", "Port") +// port := ssh_config.Get("myhost", "Port") // // You can also manipulate an SSH config file and then print it or write it back // to disk. @@ -310,7 +310,8 @@ func (u *UserSettings) doLoadConfigs() { u.onceErr = err return } - }) + }, + ) } func parseFile(filename string, ignoreMatchDirective bool) (*Config, error) {