@@ -125,7 +125,7 @@ var (
125
125
_ gojay.UnmarshalerJSONObject = (* WireRequest )(nil )
126
126
)
127
127
128
- // MarshalJSONObject implements gojay's MarshalerJSONObject
128
+ // MarshalJSONObject implements gojay's MarshalerJSONObject.
129
129
func (r * WireResponse ) MarshalJSONObject (enc * gojay.Encoder ) {
130
130
enc .StringKey (keyJSONRPC , Version )
131
131
enc .StringKeyOmitEmpty (keyID , fmt .Sprint (r .ID ))
@@ -136,7 +136,7 @@ func (r *WireResponse) MarshalJSONObject(enc *gojay.Encoder) {
136
136
// IsNil implements gojay.MarshalerJSONObject.
137
137
func (r * WireResponse ) IsNil () bool { return r == nil }
138
138
139
- // UnmarshalJSONObject implements gojay.UnmarshalerJSONObject
139
+ // UnmarshalJSONObject implements gojay.UnmarshalerJSONObject.
140
140
func (r * WireResponse ) UnmarshalJSONObject (dec * gojay.Decoder , k string ) error {
141
141
switch k {
142
142
case keyJSONRPC :
@@ -170,7 +170,7 @@ var (
170
170
_ gojay.UnmarshalerJSONObject = (* WireResponse )(nil )
171
171
)
172
172
173
- // MarshalJSONObject implements gojay's MarshalerJSONObject
173
+ // MarshalJSONObject implements gojay's MarshalerJSONObject.
174
174
func (r * Combined ) MarshalJSONObject (enc * gojay.Encoder ) {
175
175
enc .StringKey (keyJSONRPC , Version )
176
176
enc .StringKeyOmitEmpty (keyID , fmt .Sprint (r .ID ))
@@ -183,7 +183,7 @@ func (r *Combined) MarshalJSONObject(enc *gojay.Encoder) {
183
183
// IsNil implements gojay.MarshalerJSONObject.
184
184
func (r * Combined ) IsNil () bool { return r == nil }
185
185
186
- // UnmarshalJSONObject implements gojay's UnmarshalerJSONObject
186
+ // UnmarshalJSONObject implements gojay's UnmarshalerJSONObject.
187
187
func (r * Combined ) UnmarshalJSONObject (dec * gojay.Decoder , k string ) error {
188
188
switch k {
189
189
case keyJSONRPC :
0 commit comments