We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8525ae commit d3e6e67Copy full SHA for d3e6e67
go/arrow/array/data.go
@@ -24,7 +24,7 @@ import (
24
"github.com/apache/arrow/go/arrow/memory"
25
)
26
27
-// Data is a type which represents the memory and metadata for an Arrow array.
+// Data represents the memory and metadata of an Arrow array.
28
type Data struct {
29
refCount int64
30
dtype arrow.DataType
go/arrow/array/string.go
@@ -30,7 +30,7 @@ const (
stringArrayMaximumCapacity = math.MaxInt32
31
32
33
-// String is a type which represents an immutable sequence of variable-length UTF-8 strings.
+// String represents an immutable sequence of variable-length UTF-8 strings.
34
type String struct {
35
array
36
offsets []int32
0 commit comments