Closed pevans-gfz closed 3 years ago
What's the preferred way to contribute the following tiny change?
diff --git a/src/system/libs/seiscomp3/config/exceptions.h b/src/system/libs/seiscomp3/config/exceptions.h index da2f20f..bbe3efe 100644 --- a/src/system/libs/seiscomp3/config/exceptions.h +++ b/src/system/libs/seiscomp3/config/exceptions.h @@ -61,8 +61,8 @@ class SC_CONFIG_API SyntaxException : public Exception { class SC_CONFIG_API CaseSensitivityException : public Exception { public: - CaseSensitivityException() : Exception("Case-insensitiv names are ambigous") { } - CaseSensitivityException(const std::string &str) : Exception("Case-insensitiv names are ambigous: " + str) { } + CaseSensitivityException() : Exception("Case-insensitive names are ambiguous") { } + CaseSensitivityException(const std::string &str) : Exception("Case-insensitive names are ambiguous: " + str) { } };
Done.
What's the preferred way to contribute the following tiny change?