aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/README.md2
-rw-r--r--source/xoroshiro_random.h2
2 files changed, 2 insertions, 2 deletions
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: