diff --git a/graph_docs/tutorial.dox b/graph_docs/tutorial.dox index aa25e246be6ddd43b443915f0c24b748edc7baf1..f3a48d68490e8cad01b284c2500eacee787f58de 100644 --- a/graph_docs/tutorial.dox +++ b/graph_docs/tutorial.dox @@ -151,10 +151,12 @@ void run_tutorial() { * also take several variations of this. * @code auto dydm = y->df(m); +auto dydb = y->df(b) auto dydy = y->df(y); auto dydb = y->df(m*x); @endcode - * The results will be @f$0.4@f$, @f$x@f$, @f$1@f$, and @f$0@f$ respectively. + * The results will be @f$0.4@f$, @f$x@f$, @f$1@f$, @f$1@f$, and @f$1@f$ + * respectively. * *