From e9cb1e701939c493a9d1f187f337f0f5f192345c Mon Sep 17 00:00:00 2001 From: Max Rabin <927792+maxrabin@users.noreply.github.com> Date: Mon, 3 Aug 2026 22:26:18 +0300 Subject: [PATCH] Fix grammar in simd.odin doc comment --- core/simd/simd.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/simd/simd.odin b/core/simd/simd.odin index 1631c4d23..fcbceb81a 100644 --- a/core/simd/simd.odin +++ b/core/simd/simd.odin @@ -2,7 +2,7 @@ Cross-platform `SIMD` support types and procedures. SIMD (Single Instruction Multiple Data), is a CPU hardware feature that -introduce special registers and instructions which operate on multiple units +introduces special registers and instructions which operate on multiple units of data at the same time, which enables faster data processing for applications with heavy computational workloads.