Skip to content

Commit 20d53d6

Browse files
authored
Change "Labels" to "labels" to reduce confusion. (#2669)
1 parent 6023f5e commit 20d53d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

OpenSim/Common/FileAdapter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class UnexpectedColumnLabel : public IOError {
9393
const std::string& expected,
9494
const std::string& received) :
9595
IOError(file, line, func) {
96-
std::string msg = "Error reading column Labels in file '" + filename;
96+
std::string msg = "Error reading column labels in file '" + filename;
9797
msg += "'. Unexpected column label. ";
9898
msg += "Expected = " + expected + ". ";
9999
msg += "Received = " + received + ". ";

OpenSim/Common/TRCFileAdapter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class IncorrectNumColumnLabels : public IOError {
122122
size_t expected,
123123
size_t received) :
124124
IOError(file, line, func) {
125-
std::string msg = "Error reading column Labels in file '" + filename;
125+
std::string msg = "Error reading column labels in file '" + filename;
126126
msg += "'. Unexpected number of column labels. ";
127127
msg += "Expected = " + std::to_string(expected) + ". ";
128128
msg += "Recieved = " + std::to_string(received) + ".";

0 commit comments

Comments
 (0)