From ea1d3b02188e6522cc40aceb22fc8c4a9105e8df Mon Sep 17 00:00:00 2001 From: Wes Gilbert <110311879+Wesley-Jakob-Gilbert@users.noreply.github.com> Date: Tue, 14 Jul 2026 13:52:01 -0500 Subject: [PATCH] Update CONTRIBUTING.md fixed syntax typo "exceptable" to "acceptable" --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8eb0942a9..479c2321f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Refer to the [README](README.md). ### Variable Naming Not all current code follows the conventions below but these will be followed for future developments. -- Maximize the use of semantic and descriptive variables names (e.g. `faceIndices` not `fcInd` or `fi`). Avoid abbreviations except in cases of industry wide usage. In some cases non-descriptive and short variable names are exceptable for instance vertices (points), faces, edges, colors and logic arrays may be denoted `V`, `F`, `E`, `C`, `L`. Furthermore, if a mathematrical symbol or letter is commonly used for some entity it may be acceptable to use short names e.g. coordinates may be referred to as `X`, `Y` and `Z` and image coordinates of indices may be referred to as `I`, `J` and `K`. +- Maximize the use of semantic and descriptive variables names (e.g. `faceIndices` not `fcInd` or `fi`). Avoid abbreviations except in cases of industry wide usage. In some cases non-descriptive and short variable names are acceptable for instance vertices (points), faces, edges, colors and logic arrays may be denoted `V`, `F`, `E`, `C`, `L`. Furthermore, if a mathematrical symbol or letter is commonly used for some entity it may be acceptable to use short names e.g. coordinates may be referred to as `X`, `Y` and `Z` and image coordinates of indices may be referred to as `I`, `J` and `K`. ## Testing Proving example files as well as a description of the expected outcomes. This can be in the form of a log file or data file that contain partial solution data.