Skip to content

Commit 1ccf813

Browse files
authored
Merge pull request #371 from andyzhangx/fix-codespell
chore: fix code spelling issue
2 parents f2c12aa + 6df0094 commit 1ccf813

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ jobs:
1313
with:
1414
check_filenames: true
1515
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum,./release-tools/prow.sh
16+
ignore_words_list: "ro"

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
name: Build
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
1313
uses: actions/checkout@v2

pkg/nfs/utils_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ func TestSetKeyValueInMap(t *testing.T) {
286286
expected: map[string]string{"subDir": "value"},
287287
},
288288
{
289-
desc: "case insentive key already exists",
289+
desc: "case insensitive key already exists",
290290
m: map[string]string{"subDir": "value2"},
291291
key: "subdir",
292292
value: "value",

0 commit comments

Comments
 (0)