@@ -28,7 +28,7 @@ type mountInfo struct {
28
28
// Creates "p" if it does not exist.
29
29
//
30
30
// Contrary to InitFS(), you MUST passt "-extpass=echo test" (or another way for
31
- // getting the master key) explicitely .
31
+ // getting the master key) explicitly .
32
32
func Mount (c string , p string , showOutput bool , extraArgs ... string ) error {
33
33
args := []string {"-q" , "-wpanic" , "-nosyslog" , "-fg" , fmt .Sprintf ("-notifypid=%d" , os .Getpid ())}
34
34
args = append (args , extraArgs ... )
@@ -98,7 +98,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error {
98
98
// MountOrExit calls Mount() and exits on failure.
99
99
//
100
100
// Contrary to InitFS(), you MUST passt "-extpass=echo test" (or another way for
101
- // getting the master key) explicitely .
101
+ // getting the master key) explicitly .
102
102
func MountOrExit (c string , p string , extraArgs ... string ) {
103
103
err := Mount (c , p , true , extraArgs ... )
104
104
if err != nil {
@@ -110,7 +110,7 @@ func MountOrExit(c string, p string, extraArgs ...string) {
110
110
// MountOrFatal calls Mount() and calls t.Fatal() on failure.
111
111
//
112
112
// Contrary to InitFS(), you MUST passt "-extpass=echo test" (or another way for
113
- // getting the master key) explicitely .
113
+ // getting the master key) explicitly .
114
114
func MountOrFatal (t * testing.T , c string , p string , extraArgs ... string ) {
115
115
err := Mount (c , p , true , extraArgs ... )
116
116
if err != nil {
0 commit comments