Fix json tag for Pos at struct Line (#422)

This commit is contained in:
Masaya Watanabe 2021-10-09 09:43:44 +09:00 committed by GitHub
parent 9b687a923e
commit 01ebbd8c2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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"`
}

View file

@ -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"`
}