Merge pull request #17793 from haoshuwei/modify-improper-comments-on-volume-file

Modify improper comments in api/server/router/volume/volume.go
This commit is contained in:
Brian Goff 2015-11-08 07:24:48 -05:00
commit 70b3ce17b7

View file

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