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