From 9d255671db9d74a42ca998f07d2aa0d2c9154b05 Mon Sep 17 00:00:00 2001 From: jose nazario Date: Mon, 19 Feb 2018 10:08:50 -0500 Subject: [PATCH] fix some typos, no content changes --- P0959.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/P0959.md b/P0959.md index 3810948..4a81df6 100644 --- a/P0959.md +++ b/P0959.md @@ -123,7 +123,7 @@ Because the internal representation may not be a straightforward array of bytes ### `variant` and `version` -Member functions `variant()` and `version()` allow checingk the variant type of the uuid and respetively the version type. These are defined by two strongly typed enums called `uuid_variant` and `uuid_version`. +Member functions `variant()` and `version()` allow checking the variant type of the uuid and respectively the version type. These are defined by two strongly typed enums called `uuid_variant` and `uuid_version`. ``` uuid id("47183823-2574-4bfd-b411-99ed177d3e43"); @@ -406,7 +406,7 @@ public: uuid operator()(); }; ``` -A type alias `uuid_random_generator` is provided for convenience as `std::mt19937` is probably the preferred choice of a pesudo-random number generator engine in most cases. +A type alias `uuid_random_generator` is provided for convenience as `std::mt19937` is probably the preferred choice of a pseudo-random number generator engine in most cases. ``` using uuid_random_generator = basic_uuid_random_generator; ```