From 95b5d357d843c3de12bc85493d35599ebbc03305 Mon Sep 17 00:00:00 2001 From: Samuel Warfield Date: Mon, 25 Aug 2025 11:34:10 -0600 Subject: [PATCH] Fix README Link Fixed the link to the SupportedCPU() docs that had an accidental ` added --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4bd43ae..2574796 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Additionally `simdjson-go` has the following features: `simdjson-go` has the following requirements for parsing: A CPU with both AVX2 and CLMUL is required (Haswell from 2013 onwards should do for Intel, for AMD a Ryzen/EPYC CPU (Q1 2017) should be sufficient). -This can be checked using the provided [`SupportedCPU()`](https://pkg.go.dev/github.com/minio/simdjson-go?tab=doc#SupportedCPU`) function. +This can be checked using the provided [`SupportedCPU()`](https://pkg.go.dev/github.com/minio/simdjson-go?tab=doc#SupportedCPU) function. The package does not provide fallback for unsupported CPUs, but serialized data can be deserialized on an unsupported CPU.