Merge pull request #5443 from yuxiaobo96/minikube-update

registry /  go9p: Correct grammar and spelling in comments
pull/5455/head
Thomas Strömberg 2019-09-24 06:41:24 -07:00 committed by GitHub
commit 63135f7189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ type Registry interface {
// ConfigFactory is a function that creates a driver config from MachineConfig
type ConfigFactory func(config.MachineConfig) interface{}
// DriverFactory is a function that load a byte stream and create a driver
// DriverFactory is a function that loads a byte stream and creates a driver.
type DriverFactory func() drivers.Driver
// DriverDef defines a machine driver metadata. It tells minikube how to initialize
@ -63,7 +63,7 @@ type DriverDef struct {
// triggered through RPC.
Builtin bool
// ConfigCreator generate a raw driver object by minikube's machine config.
// ConfigCreator generates a raw driver object by minikube's machine config.
ConfigCreator ConfigFactory
// DriverCreator is the factory method that creates a machine driver instance.

View File

@ -22,7 +22,7 @@ type Clnt struct {
Debuglevel int // =0 don't print anything, >0 print Fcalls, >1 print raw packets
Msize uint32 // Maximum size of the 9P messages
Dotu bool // If true, 9P2000.u protocol is spoken
Root *Fid // Fid that points to the rood directory
Root *Fid // Fid that points to the root directory
Id string // Used when printing debug messages
Log *Logger