소스 검색

Merge pull request #24242 from robbyt/patch-1

fixes minor typo in comment
Doug Davis 9 년 전
부모
커밋
e3c09a848c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      volume/volume.go

+ 1 - 1
volume/volume.go

@@ -34,7 +34,7 @@ type Driver interface {
 	List() ([]Volume, error)
 	// Get retrieves the volume with the requested name
 	Get(name string) (Volume, error)
-	// Scope returns the scope of the driver (e.g. `golbal` or `local`).
+	// Scope returns the scope of the driver (e.g. `global` or `local`).
 	// Scope determines how the driver is handled at a cluster level
 	Scope() string
 }