Fix various typos throughout the codebase

This commit is contained in:
luzpaz
2024-07-07 15:08:15 +00:00
committed by Chris Hennes
parent 0bce5fccc5
commit 9a1f487cdb
20 changed files with 24 additions and 24 deletions

View File

@@ -281,7 +281,7 @@ std::string Assembly::BomObject::getText(size_t row, size_t col)
if (cell) {
cell->getStringContent(cellName);
// getStringContent is addind a ' before the string for whatever reason.
// getStringContent is adding a ' before the string for whatever reason.
if (!cellName.empty() && cellName.front() == '\'') {
cellName.erase(0, 1); // Remove the first character if it's a '
}