Fixed recurring typo

This commit is contained in:
Peter Klotz
2018-02-11 21:03:54 +01:00
parent 1f6d8bc602
commit a5aaf4d8d0
2 changed files with 3 additions and 3 deletions

View File

@ -147,7 +147,7 @@ class optional_base : public optional_tag
}
#endif
// Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialzed optional<T>.
// Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialized optional<T>.
// Can throw if T::T(T const&) does
optional_base ( bool cond, argument_type val )
: