Browse Source

Modify improper comments in api/server/router/volume/volume.go

Signed-off-by: Shuwei Hao <haoshuwei24@gmail.com>
Shuwei Hao 9 years ago
parent
commit
6efa10f668
1 changed files with 2 additions and 2 deletions
  1. 2 2
      api/server/router/volume/volume.go

+ 2 - 2
api/server/router/volume/volume.go

@@ -5,13 +5,13 @@ import (
 	"github.com/docker/docker/api/server/router/local"
 )
 
-// volumesRouter is a router to talk with the volumes controller
+// volumeRouter is a router to talk with the volumes controller
 type volumeRouter struct {
 	backend Backend
 	routes  []router.Route
 }
 
-// NewRouter initializes a new volumes router
+// NewRouter initializes a new volumeRouter
 func NewRouter(b Backend) router.Router {
 	r := &volumeRouter{
 		backend: b,