From de3d61f15b6086117aaa95b49867a6f07cd424c6 Mon Sep 17 00:00:00 2001 From: Bojun Chai Date: Tue, 21 Apr 2026 08:50:13 +0800 Subject: [PATCH] Fix invalid Mac OS X minimum version in README (#25758) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Repo:** nim-lang/Nim (⭐ 16000) **Type:** docs **Files changed:** 1 **Lines:** +1/-1 ## What Correct the supported platform table in the top-level README by changing the Mac OS X minimum version from `10.04` to `10.4`. ## Why `10.04` is not a valid Mac OS X release number, so the existing text is misleading for anyone reading the build and platform support guidance. Fixing it keeps the README accurate without changing project behavior or widening scope. ## Testing Verified the README diff locally and confirmed the corrected `Mac OS X (10.4 or greater)` entry appears in `readme.md`. No code or test suite changes were needed for this docs-only patch. ## Risk Low / documentation-only change with no runtime impact. Co-authored-by: Bojun Chai --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 22d5294c2f..c0a60483c7 100644 --- a/readme.md +++ b/readme.md @@ -39,7 +39,7 @@ architecture combinations: |--------------------------------|----------------------------------------| | Windows (Windows XP or greater) | x86 and x86_64 | | Linux (most distributions) | x86, x86_64, ppc64, and armv6l | -| Mac OS X (10.04 or greater) | x86, x86_64, ppc64, and Apple Silicon (ARM64) | +| Mac OS X (10.4 or greater) | x86, x86_64, ppc64, and Apple Silicon (ARM64) | More platforms are supported, however, they are not tested regularly and they may not be as stable as the above-listed platforms.