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-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 34dcc82f fix(docs): fix CPU markdown link in README (#907)
34dcc82f is described below

commit 34dcc82fae82665d8cf9257877642834dd05cd6a
Author: Minh Vu <[email protected]>
AuthorDate: Thu Jul 9 22:18:29 2026 +0200

    fix(docs): fix CPU markdown link in README (#907)
    
    ## Summary
    Fix a small README Markdown link typo.
    
    ## Why this fix
    The CPU link in Performance section used swapped Markdown delimiters:
    `(cpu)[url]`.
    
    ## Changes
    - Corrected to `[cpu](https://pkg.go.dev/golang.org/x/sys/cpu)`.
    
    ## Files
    - `README.md`
    
    ### Bug details
    - Severity: 5/100
    - Ask product?: 0/100
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c0381462..654d3871 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ advanced optimizer and generate PLAN9 assembly functions from 
C/C++ code. The
 arrow package can be compiled without these optimizations using the `noasm`
 build tag. Alternatively, by configuring an environment variable, it is
 possible to dynamically configure which architecture optimizations are used at
-runtime. We use the (cpu)[https://pkg.go.dev/golang.org/x/sys/cpu] package to
+runtime. We use the [cpu](https://pkg.go.dev/golang.org/x/sys/cpu) package to
 check dynamically for these features.
 
 ### Example Usage

Reply via email to