Skip to content

Commit

Permalink
fix: Correct typo in type name of struct (NerdctlClientOuput) (#743)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
haytok authored Feb 16, 2024
1 parent 6188a2c commit 13de2b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/finch/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ type versionAction struct {

// NerdctlVersionOutput captures the nerdctl version.
type NerdctlVersionOutput struct {
Client NerdctlClientOuput `json:"Client"`
Client NerdctlClientOutput `json:"Client"`
Server NerdctlServerOutput `json:"Server"`
}

// NerdctlClientOuput captures the nerdctl Client output.
type NerdctlClientOuput struct {
// NerdctlClientOutput captures the nerdctl Client output.
type NerdctlClientOutput struct {
Version string `json:"Version"`
GitCommit string `json:"GitCommit"`
GoVersion string `json:"GoVersion"`
Expand Down

0 comments on commit 13de2b9

Please sign in to comment.