Skip to content

Commit

Permalink
fix spelling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Feb 13, 2022
1 parent 74e1cb3 commit 9e0e97d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum,./release-tools/prow.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ spec:

## Community, discussion, contribution, and support

Check out [development.md](./docs/DEVELOPMENT.md) for instructions to set up a development enviroment to run CSI Proxy.
Check out [development.md](./docs/DEVELOPMENT.md) for instructions to set up a development environment to run CSI Proxy.

Learn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).

Expand Down
2 changes: 1 addition & 1 deletion client/api/system/v1alpha1/api.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/api/system/v1alpha1/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ message StopServiceRequest {
// Service name (as listed in System\CCS\Services keys)
string name = 1;

// Forces stopping of services that has dependant services
// Forces stopping of services that has dependent services
bool force = 2;
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/os/disk/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func (DiskAPI) CreateBasicPartition(diskNumber uint32) error {
cmd := fmt.Sprintf("New-Partition -DiskNumber %d -UseMaximumSize", diskNumber)
out, err := utils.RunPowershellCmd(cmd)
if err != nil {
return fmt.Errorf("error creating parition on disk %d: %v, %v", diskNumber, out, err)
return fmt.Errorf("error creating partition on disk %d: %v, %v", diskNumber, out, err)
}
return nil
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/server/system/impl/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type StopServiceRequest struct {
// Service name (as listed in System\CCS\Services keys)
Name string

// Forces stopping of services that has dependant services
// Forces stopping of services that has dependent services
Force bool
}

Expand Down

0 comments on commit 9e0e97d

Please sign in to comment.