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