@@ -28,7 +28,7 @@ type mountInfo struct {
2828// Creates "p" if it does not exist.
2929//
3030// 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 .
3232func Mount (c string , p string , showOutput bool , extraArgs ... string ) error {
3333 args := []string {"-q" , "-wpanic" , "-nosyslog" , "-fg" , fmt .Sprintf ("-notifypid=%d" , os .Getpid ())}
3434 args = append (args , extraArgs ... )
@@ -98,7 +98,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error {
9898// MountOrExit calls Mount() and exits on failure.
9999//
100100// 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 .
102102func MountOrExit (c string , p string , extraArgs ... string ) {
103103 err := Mount (c , p , true , extraArgs ... )
104104 if err != nil {
@@ -110,7 +110,7 @@ func MountOrExit(c string, p string, extraArgs ...string) {
110110// MountOrFatal calls Mount() and calls t.Fatal() on failure.
111111//
112112// 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 .
114114func MountOrFatal (t * testing.T , c string , p string , extraArgs ... string ) {
115115 err := Mount (c , p , true , extraArgs ... )
116116 if err != nil {
0 commit comments