Skip to content

Commit 13de2b9

Browse files
authored
fix: Correct typo in type name of struct (NerdctlClientOuput) (runfinch#743)
Issue #, if available: N/A *Description of changes:* Details are described in commit title and diff of the codes. *Testing done:* Yes - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Hayato Kiwata <[email protected]>
1 parent 6188a2c commit 13de2b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: cmd/finch/version.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ type versionAction struct {
3636

3737
// NerdctlVersionOutput captures the nerdctl version.
3838
type NerdctlVersionOutput struct {
39-
Client NerdctlClientOuput `json:"Client"`
39+
Client NerdctlClientOutput `json:"Client"`
4040
Server NerdctlServerOutput `json:"Server"`
4141
}
4242

43-
// NerdctlClientOuput captures the nerdctl Client output.
44-
type NerdctlClientOuput struct {
43+
// NerdctlClientOutput captures the nerdctl Client output.
44+
type NerdctlClientOutput struct {
4545
Version string `json:"Version"`
4646
GitCommit string `json:"GitCommit"`
4747
GoVersion string `json:"GoVersion"`

0 commit comments

Comments
 (0)