diff options
Diffstat (limited to 'third_party/nix/src/cpptoml/cpptoml.h')
-rw-r--r-- | third_party/nix/src/cpptoml/cpptoml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/cpptoml/cpptoml.h b/third_party/nix/src/cpptoml/cpptoml.h index 5a00da3b4cda..150b53ff863c 100644 --- a/third_party/nix/src/cpptoml/cpptoml.h +++ b/third_party/nix/src/cpptoml/cpptoml.h @@ -852,7 +852,7 @@ class array : public base } /** - * Obtains a option<vector<T>>. The option will be empty if the array + * Obtains a option<std::vector<T>>. The option will be empty if the array * contains values that are not of type T. */ template <class T> @@ -1041,7 +1041,7 @@ inline std::shared_ptr<array> make_element<array>() } // namespace detail /** - * Obtains a option<vector<T>>. The option will be empty if the array + * Obtains a option<std::vector<T>>. The option will be empty if the array * contains values that are not of type T. */ template <> |