Skip to content

Commit 825480a

Browse files
chore: bump crate-ci/typos from 1.12.12 to 1.13.3 (#5304)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Geoffrey Huntley <ghuntley@ghuntley.com>
1 parent 133b2de commit 825480a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/coder.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Checkout
3535
uses: actions/checkout@v2
3636
- name: typos-action
37-
uses: crate-ci/typos@v1.12.12
37+
uses: crate-ci/typos@v1.13.3
3838
with:
3939
config: .github/workflows/typos.toml
4040
- name: Fix Helper

.github/workflows/typos.toml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ doas = "doas"
1010
darcula = "darcula"
1111
Hashi = "Hashi"
1212
trialer = "trialer"
13+
encrypter = "encrypter"
1314

1415
[files]
1516
extend-exclude = [

coderd/httpapi/json.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
)
99

1010
// Duration wraps time.Duration and provides better JSON marshaling and
11-
// unmarshaling. The default time.Duration marshals as an integer and only
12-
// accepts integers when unmarshaling, which is not very user friendly as users
11+
// unmarshalling. The default time.Duration marshals as an integer and only
12+
// accepts integers when unmarshalling, which is not very user friendly as users
1313
// cannot write durations like "1h30m".
1414
//
1515
// This type marshals as a string like "1h30m", and unmarshals from either a

coderd/templateversions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ func (api *API) fetchTemplateVersionDryRunJob(rw http.ResponseWriter, r *http.Re
438438
err = json.Unmarshal(job.Input, &input)
439439
if err != nil {
440440
httpapi.Write(ctx, rw, http.StatusInternalServerError, codersdk.Response{
441-
Message: "Internal error unmarshaling job metadata.",
441+
Message: "Internal error unmarshalling job metadata.",
442442
Detail: err.Error(),
443443
})
444444
return database.ProvisionerJob{}, false

0 commit comments

Comments
 (0)