diff --git a/src/util/list_fn.h b/src/util/list_fn.h index 3c0e6aec4..a2f616d1d 100644 --- a/src/util/list_fn.h +++ b/src/util/list_fn.h @@ -140,7 +140,7 @@ list append(list const & l1, list const & l2) { template list map(list const & l, F && f) { static_assert(std::is_same::type, T>::value, - "map: return type of f is not sxpr"); + "map: return type of f is not equal to input type"); if (is_nil(l)) { return l; } else {