This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 38bb310fac MINOR: [Go] Remove extraneous godocs line (#42248)
38bb310fac is described below
commit 38bb310fac304acbe548258dedecce0e5bdf5dc6
Author: Wyatt Alt <[email protected]>
AuthorDate: Mon Jun 24 08:32:59 2024 -0700
MINOR: [Go] Remove extraneous godocs line (#42248)
<!--
Thanks for opening a pull request!
If this is your first pull request you can find detailed information on
how
to contribute here:
* [New Contributor's
Guide](https://arrow.apache.org/docs/dev/developers/guide/step_by_step/pr_lifecycle.html#reviews-and-merge-of-the-pull-request)
* [Contributing
Overview](https://arrow.apache.org/docs/dev/developers/overview.html)
If this is not a [minor
PR](https://github.com/apache/arrow/blob/main/CONTRIBUTING.md#Minor-Fixes).
Could you open an issue for this pull request on GitHub?
https://github.com/apache/arrow/issues/new/choose
Opening GitHub issues ahead of time contributes to the
[Openness](http://theapacheway.com/open/#:~:text=Openness%20allows%20new%20users%20the,must%20happen%20in%20the%20open.)
of the Apache Arrow project.
Then could you also rename the pull request title in the following
format?
GH-${GITHUB_ISSUE_ID}: [${COMPONENT}] ${SUMMARY}
or
MINOR: [${COMPONENT}] ${SUMMARY}
In the case of PARQUET issues on JIRA the title also supports:
PARQUET-${JIRA_ISSUE_ID}: [${COMPONENT}] ${SUMMARY}
-->
### Rationale for this change
Encountered this line browsing docs at
https://pkg.go.dev/github.com/apache/arrow/go/v16/arrow.
---
go/arrow/example_test.go | 1 -
1 file changed, 1 deletion(-)
diff --git a/go/arrow/example_test.go b/go/arrow/example_test.go
index 8285556f50..fbb092ef5b 100644
--- a/go/arrow/example_test.go
+++ b/go/arrow/example_test.go
@@ -27,7 +27,6 @@ import (
)
// This example demonstrates how to build an array of int64 values using a
builder and Append.
-// Whilst convenient for small arrays,
func Example_minimal() {
// Create an allocator.
pool := memory.NewGoAllocator()