Skip to content

Commit

Permalink
Merge pull request #28 from dave-tucker/vet
Browse files Browse the repository at this point in the history
Fix issues with json notation highlighted in vet
  • Loading branch information
mavenugo committed Nov 13, 2014
2 parents ee06ce9 + e08e3e0 commit 3b1edeb
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 3b1edeb

Please sign in to comment.