From 8836cbcaf1aa5df50fb18eccc7fe90ba0b3fcb60 Mon Sep 17 00:00:00 2001 From: Ryo Suzuki Date: Sun, 13 Jun 2021 00:34:50 +0900 Subject: [PATCH] fix typo in README.md Marsenne Twister -> Mersenne Twister --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b3e66f..264c03f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Generators: | Name | Description | | ---- | ----------- | | `basic_uuid_random_generator` | a function object that generates version 4 UUIDs using a pseudo-random number generator engine. | -| `uuid_random_generator` | a `basic_uuid_random_generator` using the Marsenne Twister engine (`basic_uuid_random_generator`) | +| `uuid_random_generator` | a `basic_uuid_random_generator` using the Mersenne Twister engine (`basic_uuid_random_generator`) | | `uuid_name_generator` | a function object that generates version 5, name-based UUIDs using SHA1 hashing. | | `uuid_system_generator` | a function object that generates new UUIDs using operating system resources (`CoCreateGuid` on Windows, `uuid_generate` on Linux, `CFUUIDCreate` on Mac)

**Note**: This is not part of the standard proposal. It is available only if the `UUID_SYSTEM_GENERATOR` macro is defined. |