aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.cc')
-rw-r--r--src/buffer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.cc b/src/buffer.cc
index 18e5c4e..695d9d4 100644
--- a/src/buffer.cc
+++ b/src/buffer.cc
@@ -192,7 +192,7 @@ Result Buffer::CompareRMSE(Buffer* buffer, float tolerance) const {
double rmse = std::sqrt(sum);
if (rmse > static_cast<double>(tolerance)) {
return Result("Root Mean Square Error of " + std::to_string(rmse) +
- " is greater then tolerance of " + std::to_string(tolerance));
+ " is greater than tolerance of " + std::to_string(tolerance));
}
return {};