File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -331,32 +331,32 @@ func (v Value) StringVal() string {
331
331
return v .Str ()
332
332
}
333
333
334
- // Deprecated: [0.61.0] Use GetInt instead.
334
+ // Deprecated: [0.61.0] Use Int instead.
335
335
func (v Value ) IntVal () int64 {
336
336
return v .Int ()
337
337
}
338
338
339
- // Deprecated: [0.61.0] Use GetDouble instead.
339
+ // Deprecated: [0.61.0] Use Double instead.
340
340
func (v Value ) DoubleVal () float64 {
341
341
return v .Double ()
342
342
}
343
343
344
- // Deprecated: [0.61.0] Use GetBool instead.
344
+ // Deprecated: [0.61.0] Use Bool instead.
345
345
func (v Value ) BoolVal () bool {
346
346
return v .Bool ()
347
347
}
348
348
349
- // Deprecated: [0.61.0] Use GetMap instead.
349
+ // Deprecated: [0.61.0] Use Map instead.
350
350
func (v Value ) MapVal () Map {
351
351
return v .Map ()
352
352
}
353
353
354
- // Deprecated: [0.61.0] Use GetSlice instead.
354
+ // Deprecated: [0.61.0] Use Slice instead.
355
355
func (v Value ) SliceVal () Slice {
356
356
return v .Slice ()
357
357
}
358
358
359
- // Deprecated: [0.61.0] Use GetBytes instead.
359
+ // Deprecated: [0.61.0] Use Bytes instead.
360
360
func (v Value ) BytesVal () ByteSlice {
361
361
return v .Bytes ()
362
362
}
You can’t perform that action at this time.
0 commit comments