diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-10-07 00:20:36 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-10-07 00:20:36 -0400 |
commit | 6dd3df3def47d0555a1e78cbe936eb8d083bb756 (patch) | |
tree | fcec440d93f8b9ed128761c5edd530b45f6e89c1 /tests/RK4.cpp | |
parent | 90f6cedb9eae73fdf0c44c34874c7e67f39e02c2 (diff) | |
download | vz-6dd3df3def47d0555a1e78cbe936eb8d083bb756.tar.xz |
Capitalisation.
Diffstat (limited to 'tests/RK4.cpp')
-rw-r--r-- | tests/RK4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/RK4.cpp b/tests/RK4.cpp index 4b667d4..c6faba1 100644 --- a/tests/RK4.cpp +++ b/tests/RK4.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 > 4.2e-8) { |