1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-17 08:21:34 +01:00

Fix typo of omitempty in a struct

This commit is contained in:
Phil Davis 2021-01-21 13:56:50 +05:45
parent 87898aa66b
commit 1d2af49130
No known key found for this signature in database
GPG Key ID: 23F482AD80551904

@ -21,7 +21,7 @@ type Line struct {
Proc string `json:"proc,omitempty"`
Time int64 `json:"time,omitempty"`
Type int `json:"type,omitempty"`
Pos int `json:"pos,omityempty"`
Pos int `json:"pos,omitempty"`
Out string `json:"out,omitempty"`
}