From 464a1977018bc08d0bc1c654b82c1c119b3be336 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Wed, 10 Jun 2020 12:07:32 -0400 Subject: [PATCH] fix doc --- numerical_methods/ode_forward_euler.c | 1 - 1 file changed, 1 deletion(-) diff --git a/numerical_methods/ode_forward_euler.c b/numerical_methods/ode_forward_euler.c index a6f68bf2..8efcb4c3 100644 --- a/numerical_methods/ode_forward_euler.c +++ b/numerical_methods/ode_forward_euler.c @@ -67,7 +67,6 @@ void exact_solution(double *x, double *y) * @param[in,out] x take \f$x_n\f$ and compute \f$x_{n+1}\f$ * @param[in,out] y take \f$y_n\f$ and compute \f$y_{n+1}\f$ * @param[in,out] dy compute \f$f\left(x_n,y_n\right)\f$ - * @param[in] order order of algorithm implementation */ void forward_euler(double dx, double *x, double *y, double *dy) {