Merge pull request #4486 from johscheuer/fix-typo

Fix typo
This commit is contained in:
Trevor Clinkenbeard 2021-03-14 15:38:48 -07:00 committed by GitHub
commit a82d6cf7d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
static constexpr ProtocolVersion with##x() { return ProtocolVersion(x ::protocolVersion); }
// ProtocolVersion wraps a uint64_t to make it type safe. It will know about the current versions.
// The default constuctor will initialize the version to 0 (which is an invalid
// The default constructor will initialize the version to 0 (which is an invalid
// version). ProtocolVersion objects should never be compared to version numbers
// directly. Instead one should always use the type-safe version types from which
// this class inherits all.