From f5bc6f8bdb6d02f7f6d3f38619533983c5d030f1 Mon Sep 17 00:00:00 2001 From: Bob Conan Date: Thu, 10 Oct 2024 14:03:49 -0500 Subject: [PATCH] Update Contributing.md fix typos --- Contributing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Contributing.md b/Contributing.md index 341e719b72..78f9facdac 100644 --- a/Contributing.md +++ b/Contributing.md @@ -189,7 +189,7 @@ Summary: ## General - The codebase currently uses C++20, though not all compilers support all C++20 features. - - See CMakeLists.txt "Enforce minimium compiler versions" for the currently supported compilers. + - See CMakeLists.txt "Enforce minimum compiler versions" for the currently supported compilers. - Use the [nullptr](https://en.cppreference.com/w/cpp/language/nullptr) type over the macro `NULL`. - If a [range-based for loop](https://en.cppreference.com/w/cpp/language/range-for) can be used instead of container iterators, use it. - Obviously, try not to use `goto` unless you have a *really* good reason for it. @@ -227,7 +227,7 @@ Summary: ## Functions - If a function parameter is a pointer or reference and its value or data isn't intended to be changed, please mark that parameter as `const`. -- Functions that specifically modify their parameters should have the respective parameter(s) marked as a pointer so that the variables being modified are syntaxically obvious. +- Functions that specifically modify their parameters should have the respective parameter(s) marked as a pointer so that the variables being modified are syntactically obvious. - What not to do: ```c++