diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 12:50:23 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 12:50:23 +0100 |
| commit | 7bab6c76599fdfd34ea9bb064d871ed2be01d4c8 (patch) | |
| tree | 8200ead8926c0c5f11f750698760a0bcd93c230c /client/server.go | |
| parent | 7339e77c6eda5b96874dfc099d5c58da8ed53629 (diff) | |
Lint: Run godot fix
Full command: golangci-lint run --disable-all -E godot --fix
Diffstat (limited to 'client/server.go')
| -rw-r--r-- | client/server.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/server.go b/client/server.go index 5fed292..5331a7d 100644 --- a/client/server.go +++ b/client/server.go @@ -315,7 +315,7 @@ func (client *Client) AddSecureInternetHomeServer(orgID string) (server.Server, return server, nil } -// AddCustomServer adds a Custom Server by `url` +// AddCustomServer adds a Custom Server by `url`. func (client *Client) AddCustomServer(url string) (server.Server, error) { errorMessage := fmt.Sprintf("failed adding Custom server with url %s", url) @@ -501,7 +501,7 @@ func (client *Client) askSecureLocation() error { // ChangeSecureLocation changes the location for an existing Secure Internet Server. // Changing a secure internet location is only possible when the user is in the main screen (STATE_NO_SERVER), otherwise it returns an error. -// It also returns an error if something has gone wrong when selecting the new location +// It also returns an error if something has gone wrong when selecting the new location. func (client *Client) ChangeSecureLocation() error { errorMessage := "failed to change location from the main screen" |
