From 701243f22b3795f998893ba82f0bbd2029f26bca Mon Sep 17 00:00:00 2001 From: copilot-swe-agent[bot] Date: Fri, 20 Feb 2026 07:06:00 +0000 Subject: Fix Unicode minus signs to ASCII hyphens Co-authored-by: 8e8m <248551607+8e8m@users.noreply.github.com> --- source/README.md | 2 +- source/xoroshiro_random.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/README.md b/source/README.md index af72351..14fdbee 100644 --- a/source/README.md +++ b/source/README.md @@ -31,7 +31,7 @@ This directory contains C implementations of various random number generators, o ### XoroShiro - **xoroshiro_random.h** / **xoroshiro_random.c** - Fast 128-bit state Xoroshiro PRNG -- Very fast, good quality, long period (~2^128−1) +- Very fast, good quality, long period (~2^128-1) - Best for: General-purpose randomness, procedural generation ### Build System diff --git a/source/xoroshiro_random.h b/source/xoroshiro_random.h index d8b41b6..6a9a889 100644 --- a/source/xoroshiro_random.h +++ b/source/xoroshiro_random.h @@ -17,7 +17,7 @@ * * Pros: * - Very fast; suitable for gameplay and procedural generation - * - Good statistical properties; long period (~2^128−1) + * - Good statistical properties; long period (~2^128-1) * - Deterministic and reproducible across platforms * * Cons: -- cgit v1.2.3