fix some typos, no content changes

This commit is contained in:
jose nazario 2018-02-19 10:08:50 -05:00 committed by GitHub
parent 830b057a3f
commit 9d255671db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<std::mt19937>;
```