summaryrefslogtreecommitdiffstats
path: root/tests/Heun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Heun.cpp')
-rw-r--r--tests/Heun.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Heun.cpp b/tests/Heun.cpp
index e8b4e6c..fca782e 100644
--- a/tests/Heun.cpp
+++ b/tests/Heun.cpp
@@ -25,7 +25,7 @@ main()
std::cout << std::setprecision(10)
<< "Numerical: " << actual << std::endl
<< "Expected: " << expected << std::endl
- << "iterations: " << integrator.iterations() << std::endl;
+ << "Iterations: " << integrator.iterations() << std::endl;
double error = std::fabs(expected - actual)/expected;
if (error > 1.4e-4) {