From e08e3e035a49edda78f6c8191f69c0f5fd988232 Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Tue, 11 Nov 2014 15:56:06 +0000 Subject: [PATCH] Fix issues with json notation highlighted in vet Signed-off-by: Dave Tucker --- notation.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notation.go b/notation.go index 78451e2f..6ecbfc79 100644 --- a/notation.go +++ b/notation.go @@ -22,7 +22,7 @@ type Operation struct { */ type MonitorRequests struct { - Requests map[string]MonitorRequest `json:",overflow"` + Requests map[string]MonitorRequest `json:"requests,overflow"` } // MonitorRequest represents a monitor request according to RFC7047 @@ -47,11 +47,11 @@ type MonitorSelect struct { * Refer to client.go : MonitorAll() function for more details */ type TableUpdates struct { - Updates map[string]TableUpdate `json:",overflow` + Updates map[string]TableUpdate `json:"updates,overflow"` } type TableUpdate struct { - Rows map[string]RowUpdate `json:",overflow"` + Rows map[string]RowUpdate `json:"rows,overflow"` } type RowUpdate struct {