Skip to content

Commit

Permalink
Change "Labels" to "labels" to reduce confusion. (opensim-org#2669)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdembia committed Feb 1, 2020
1 parent 6023f5e commit 20d53d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenSim/Common/FileAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class UnexpectedColumnLabel : public IOError {
const std::string& expected,
const std::string& received) :
IOError(file, line, func) {
std::string msg = "Error reading column Labels in file '" + filename;
std::string msg = "Error reading column labels in file '" + filename;
msg += "'. Unexpected column label. ";
msg += "Expected = " + expected + ". ";
msg += "Received = " + received + ". ";
Expand Down
2 changes: 1 addition & 1 deletion OpenSim/Common/TRCFileAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class IncorrectNumColumnLabels : public IOError {
size_t expected,
size_t received) :
IOError(file, line, func) {
std::string msg = "Error reading column Labels in file '" + filename;
std::string msg = "Error reading column labels in file '" + filename;
msg += "'. Unexpected number of column labels. ";
msg += "Expected = " + std::to_string(expected) + ". ";
msg += "Recieved = " + std::to_string(received) + ".";
Expand Down

0 comments on commit 20d53d6

Please sign in to comment.