Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit d3e6e67

Browse files
author
Richard Artoul
committed
cleanup comments
1 parent c8525ae commit d3e6e67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go/arrow/array/data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/apache/arrow/go/arrow/memory"
2525
)
2626

27-
// Data is a type which represents the memory and metadata for an Arrow array.
27+
// Data represents the memory and metadata of an Arrow array.
2828
type Data struct {
2929
refCount int64
3030
dtype arrow.DataType

go/arrow/array/string.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const (
3030
stringArrayMaximumCapacity = math.MaxInt32
3131
)
3232

33-
// String is a type which represents an immutable sequence of variable-length UTF-8 strings.
33+
// String represents an immutable sequence of variable-length UTF-8 strings.
3434
type String struct {
3535
array
3636
offsets []int32

0 commit comments

Comments
 (0)