From 1d2af4913065acbb41e33219aa6cd930482ecbfb Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 21 Jan 2021 13:56:50 +0545 Subject: [PATCH] Fix typo of omitempty in a struct --- drone/exec/_backup/line.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/exec/_backup/line.go b/drone/exec/_backup/line.go index 88491f0..865d6fc 100644 --- a/drone/exec/_backup/line.go +++ b/drone/exec/_backup/line.go @@ -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"` }