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

Co-authored-by: Masaya Watanabe <sfbgwm30@gmail.com>
This commit is contained in:
6543 2021-10-10 13:59:23 +02:00 committed by GitHub
parent 112d227433
commit 8368a17b06
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"`
}