From 5be5db1c789a000cba7eba4e8064b0518dc9ebc9 Mon Sep 17 00:00:00 2001
From: Kirill Zubov <Kirillzubov3@gmail.com>
Date: Mon, 2 Sep 2024 12:29:13 +0400
Subject: [PATCH] Update docs/src/tutorials/pino_ode.md

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
 docs/src/tutorials/pino_ode.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/src/tutorials/pino_ode.md b/docs/src/tutorials/pino_ode.md
index 42a30af0e9..c21e4e1983 100644
--- a/docs/src/tutorials/pino_ode.md
+++ b/docs/src/tutorials/pino_ode.md
@@ -46,7 +46,7 @@ Now let's compare the prediction from the learned operator with the ground truth
 ```@example pino
 using Plots
 
-function get_trainset(bounds, tspan , number_of_parameters, dt)
+function get_trainset(bounds, tspan, number_of_parameters, dt)
     p_ = [range(start = b[1], length = number_of_parameters, stop = b[2]) for b in bounds]
     p = vcat([collect(reshape(p_i, 1, size(p_i,1))) for p_i in p_]...)
     t_ = collect(tspan[1]:dt:tspan[2])