Skip to content

Commit

Permalink
Fix issues with json notation highlighted in vet
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Tucker <dave@socketplane.io>
  • Loading branch information
Dave Tucker committed Nov 11, 2014
1 parent ee06ce9 commit e08e3e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notation.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 {
Expand Down

0 comments on commit e08e3e0

Please sign in to comment.