17657: Allow ssh port forwarding to container ports.
[arvados.git] / lib / mount / command.go
index 5b331f0ce1587249a6e057356838284696d147de..e92af24075f1b824c741f6f35b4de53e2346b7ed 100644 (file)
@@ -9,6 +9,7 @@ import (
        "io"
        "log"
        "net/http"
+       // pprof is only imported to register its HTTP handlers
        _ "net/http/pprof"
        "os"
 
@@ -26,7 +27,7 @@ type cmd struct {
        // not be called more than once, or when ready is already
        // closed.
        ready chan struct{}
-       // It is safe to call Unmount ounly after ready has been
+       // It is safe to call Unmount only after ready has been
        // closed.
        Unmount func() (ok bool)
 }