Skip to content

Commit

Permalink
Fix some typos (#3302)
Browse files Browse the repository at this point in the history
Signed-off-by: mooncake <[email protected]>
  • Loading branch information
mooncak authored and balopat committed Nov 6, 2018
1 parent b410b6d commit b9a4f94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/contributors/adding_driver.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ create a new docker machine driver.
First of all, before started, you need to understand your driver in terms of:

- Which operating system is your driver running on?
- Is your driver builtin the minikube binary or triggerred through RPC?
- Is your driver builtin the minikube binary or triggered through RPC?
- How to translate minikube config to driver config?
- If builtin, how to instantiate the driver instance?

Expand Down
2 changes: 1 addition & 1 deletion pkg/minikube/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ type DriverDef struct {
Name string

// BuiltIn indicates if the driver is builtin minikube binary, or the driver is
// triggerred through RPC.
// triggered through RPC.
Builtin bool

// ConfigCreator generate a raw driver object by minikube's machine config.
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/kubeconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func decode(data []byte) (*api.Config, error) {
return config.(*api.Config), nil
}

// GetKubeConfigStatus verifys the ip stored in kubeconfig.
// GetKubeConfigStatus verifies the ip stored in kubeconfig.
func GetKubeConfigStatus(ip net.IP, filename string, machineName string) (bool, error) {
if ip == nil {
return false, fmt.Errorf("Error, empty ip passed")
Expand Down

0 comments on commit b9a4f94

Please sign in to comment.