diff --git a/include/momo/HashMap.h b/include/momo/HashMap.h index 36763241..050b5c73 100644 --- a/include/momo/HashMap.h +++ b/include/momo/HashMap.h @@ -225,7 +225,7 @@ class HashMapSettings All `HashMap` functions and constructors have strong exception safety, but not the following cases: 1. Functions `Insert` receiving many items have basic exception safety. - 2. Function `Remove` receiving predicate have basic exception safety. + 2. Function `Remove` receiving predicate has basic exception safety. 3. Functions `MergeFrom` and `MergeTo` have basic exception safety. 4. In case default `KeyValueTraits`: if insert/add function receiving argument `Key&& key` throws exception, this argument may be changed. diff --git a/include/momo/HashMultiMap.h b/include/momo/HashMultiMap.h index 52bbfc54..fa09ed74 100644 --- a/include/momo/HashMultiMap.h +++ b/include/momo/HashMultiMap.h @@ -580,7 +580,7 @@ class HashMultiMapSettings All `HashMultiMap` functions and constructors have strong exception safety, but not the following cases: 1. Functions `Add` receiving many items have basic exception safety. - 2. Function `Remove` receiving predicate have basic exception safety. + 2. Function `Remove` receiving predicate has basic exception safety. 3. In case default `KeyValueTraits`: If function `Add`, `AddVar` or `AddCrt` receiving argument `Key&& key` throws exception, this argument may be changed. diff --git a/include/momo/HashSet.h b/include/momo/HashSet.h index 4d4ec537..56f0756c 100644 --- a/include/momo/HashSet.h +++ b/include/momo/HashSet.h @@ -440,7 +440,7 @@ class HashSetSettings All `HashSet` functions and constructors have strong exception safety, but not the following cases: 1. Functions `Insert` receiving many items have basic exception safety. - 2. Function `Remove` receiving predicate have basic exception safety. + 2. Function `Remove` receiving predicate has basic exception safety. 3. Functions `MergeFrom` and `MergeTo` have basic exception safety. */ diff --git a/include/momo/TreeMap.h b/include/momo/TreeMap.h index d36e9739..05156099 100644 --- a/include/momo/TreeMap.h +++ b/include/momo/TreeMap.h @@ -173,7 +173,7 @@ class TreeMapSettings All `TreeMap` functions and constructors have strong exception safety, but not the following cases: 1. Functions `Insert` receiving many items have basic exception safety. - 2. Function `Remove` receiving predicate have basic exception safety. + 2. Function `Remove` receiving predicate has basic exception safety. 3. Functions `MergeFrom` and `MergeTo` have basic exception safety. 4. In case default `KeyValueTraits`: if insert/add function receiving argument `Key&& key` throws exception, this argument may be changed. diff --git a/include/momo/TreeSet.h b/include/momo/TreeSet.h index cb54438c..d709a7db 100644 --- a/include/momo/TreeSet.h +++ b/include/momo/TreeSet.h @@ -242,7 +242,7 @@ class TreeSetSettings All `TreeSet` functions and constructors have strong exception safety, but not the following cases: 1. Functions `Insert` receiving many items have basic exception safety. - 2. Function `Remove` receiving predicate have basic exception safety. + 2. Function `Remove` receiving predicate has basic exception safety. 3. Functions `MergeFrom` and `MergeTo` have basic exception safety. */