summaryrefslogtreecommitdiff
path: root/cli_args.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-08-10 18:27:08 +0200
committerJakob Unterwurzacher2021-08-10 18:28:27 +0200
commit527e72bf80bc6de943b13b197be4a2028631feba (patch)
tree9ad9bef70111b7e2b467828c3fb23f4c6c57359e /cli_args.go
parentf53f52b0464f747a370618bcdf152fad585f1eb5 (diff)
main: autoformat import block
The autoformatter now always wants to move the ensurefds012 import into the import block. Accept it and fix the spelling of "alphabetically".
Diffstat (limited to 'cli_args.go')
-rw-r--r--cli_args.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli_args.go b/cli_args.go
index 8018f99..f5fecd7 100644
--- a/cli_args.go
+++ b/cli_args.go
@@ -1,11 +1,11 @@
package main
-// Should be initialized before anything else.
-// This import line MUST be in the alphabitcally first source code file of
-// package main!
-import _ "github.com/rfjakob/gocryptfs/internal/ensurefds012"
-
import (
+ // Should be initialized before anything else.
+ // This import line MUST be in the alphabetically first source code file of
+ // package main!
+ _ "github.com/rfjakob/gocryptfs/internal/ensurefds012"
+
"fmt"
"net"
"os"