summaryrefslogtreecommitdiffstats
path: root/tests/Euler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Euler.cpp')
-rw-r--r--tests/Euler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Euler.cpp b/tests/Euler.cpp
index fa2d97c..d9c6d18 100644
--- a/tests/Euler.cpp
+++ b/tests/Euler.cpp
@@ -23,9 +23,9 @@
#include <iostream>
#include <iomanip>
-// y' = y (y == C*exp(t))
+// y' = y (y == C*exp(x))
double
-f(double t, double y)
+f(double x, double y)
{
return y;
}