Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
sillydan1 committed Jul 19, 2022
1 parent f632ebf commit f941004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operations/boolean.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ auto t_lt(const T1&, const T2&) {
template<typename T1, typename T2>
auto t_implies(const T1&, const T2&) {
std::ostringstream ss{};
ss << "Unable to imply (->) types " << typeid(T1).name() << " and " << typeid(T2).name();
ss << "Unable to imply (=>) types " << typeid(T1).name() << " and " << typeid(T2).name();
throw std::domain_error(ss.str());
return nullptr; // Must return something
}
Expand Down

0 comments on commit f941004

Please sign in to comment.