aboutsummaryrefslogtreecommitdiff
path: root/docs/styleguide-cpp.md
diff options
context:
space:
mode:
author DiarmaidMckeagney <117989065+DiarmaidMckeagney@users.noreply.github.com>2023-05-16 21:59:51 +0200
committer DiarmaidMckeagney <117989065+DiarmaidMckeagney@users.noreply.github.com>2023-05-16 21:59:51 +0200
commita13f6e6933f1464daed47116705e6812b65ad754 (patch)
treec4cd62378eb26f8dac6c485f8188dff04cd011f1 /docs/styleguide-cpp.md
parent1e490997cda95c6064d56eaba57d60737653e266 (diff)
Changing "OpenVic2" to "OpenVic"
Changing instances of the term "OpenVic2" to just "OpenVic" within the documentation.
Diffstat (limited to 'docs/styleguide-cpp.md')
-rw-r--r--docs/styleguide-cpp.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/styleguide-cpp.md b/docs/styleguide-cpp.md
index 6440314..c48b5f6 100644
--- a/docs/styleguide-cpp.md
+++ b/docs/styleguide-cpp.md
@@ -34,9 +34,9 @@ Source code files should adhere to the following:
- Any `#include` directives should be at the top of the file
- Any header files have the `.hpp` file extension
- Any implementation files have the `.cpp` file extension
-- Code should be within the `OpenVic2` namespace (or a nested namespace)
-- Any submodules or third-party utilities should be in the `OpenVic2/extension/deps` directory
-- Groups of related source files should be kept in a sub-directory of `OpenVic2/extension/src`
+- Code should be within the `OpenVic` namespace (or a nested namespace)
+- Any submodules or third-party utilities should be in the `OpenVic/extension/deps` directory
+- Groups of related source files should be kept in a sub-directory of `OpenVic/extension/src`
- Any lines that are longer than 120 characters in length should be split across multiple lines
## 2. Conventions