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".
This commit is contained in:
Jakob Unterwurzacher 2021-08-10 18:27:08 +02:00
parent f53f52b046
commit 527e72bf80
1 changed files with 5 additions and 5 deletions

View File

@ -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"