Skip to content

Commit

Permalink
Add spcae in string
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Apr 5, 2024
1 parent 295ce60 commit 1a2ae4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CoefficientFunction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CoefficientFunction::~CoefficientFunction(){};
void CoefficientFunction::SetOrder(const int &order) {
// check order
if (order < 1 || order > 3) {
cout << "Error: order must be 1,2 or 3. Got: " << order << endl;
cout << "Error: order must be 1, 2 or 3. Got: " << order << endl;
exit(-1);
}
order_ = order;
Expand Down

0 comments on commit 1a2ae4a

Please sign in to comment.