Skip to content

Commit

Permalink
correcting error message refs #2
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Apr 8, 2024
1 parent 2dc5969 commit ac84298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/geom/PositionVector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1539,7 +1539,7 @@ PositionVector::operator-(const PositionVector& v2) const {
PositionVector
PositionVector::operator+(const PositionVector& v2) const {
if (length() != v2.length()) {
WRITE_ERROR(TL("Trying to subtract PositionVectors of different lengths."));
WRITE_ERROR(TL("Trying to add PositionVectors of different lengths."));
}
PositionVector pv;
auto i1 = begin();
Expand Down

0 comments on commit ac84298

Please sign in to comment.