This is an automated email from the ASF dual-hosted git repository.
maplefu 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 d801daedde MINOR: [Go][Doc] fix code format in the readme (#43725)
d801daedde is described below
commit d801daeddead7ceaca83424874ea006245430bc3
Author: Xin Hao <[email protected]>
AuthorDate: Fri Aug 16 18:16:49 2024 +0800
MINOR: [Go][Doc] fix code format in the readme (#43725)
### Rationale for this change
### What changes are included in this PR?
### Are these changes tested?
### Are there any user-facing changes?
Authored-by: Xin Hao <[email protected]>
Signed-off-by: mwish <[email protected]>
---
go/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go/README.md b/go/README.md
index 51ac06c87f..ec82422972 100644
--- a/go/README.md
+++ b/go/README.md
@@ -40,7 +40,7 @@ import (
)
func main() {
- dsn :=
"uri=grpc://localhost:12345;username=mickeymouse;password=p@55w0RD"
+ dsn := "uri=grpc://localhost:12345;username=mickeymouse;password=p@55w0RD"
db, err := sql.Open("flightsql", dsn)
...
}