Skip to content

Commit 1f09c94

Browse files
committed
Fix documentation.
1 parent 00b3840 commit 1f09c94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

array.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ func (a *Array) Close() error {
221221
return nil
222222
}
223223

224-
// Create creates a new TileDB array given a context, URI and schema.
224+
// CreateArray creates a new TileDB array given a context, URI and schema.
225225
func CreateArray(tdbCtx *Context, uri string, arraySchema *ArraySchema) error {
226226
curi := C.CString(uri)
227227
defer C.free(unsafe.Pointer(curi))

group.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func NewGroup(tdbCtx *Context, uri string) (*Group, error) {
5353
return newGroupFromHandle(tdbCtx, uri, newGroupHandle(groupPtr)), nil
5454
}
5555

56-
// Create creates a new TileDB group given a context and URI.
56+
// CreateGroup creates a new TileDB group given a context and URI.
5757
func CreateGroup(tdbCtx *Context, uri string) error {
5858
curi := C.CString(uri)
5959
defer C.free(unsafe.Pointer(curi))

0 commit comments

Comments
 (0)