File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class UnexpectedColumnLabel : public IOError {
93
93
const std::string& expected,
94
94
const std::string& received) :
95
95
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;
97
97
msg += " '. Unexpected column label. " ;
98
98
msg += " Expected = " + expected + " . " ;
99
99
msg += " Received = " + received + " . " ;
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ class IncorrectNumColumnLabels : public IOError {
122
122
size_t expected,
123
123
size_t received) :
124
124
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;
126
126
msg += " '. Unexpected number of column labels. " ;
127
127
msg += " Expected = " + std::to_string (expected) + " . " ;
128
128
msg += " Recieved = " + std::to_string (received) + " ." ;
You can’t perform that action at this time.
0 commit comments