From 96846d8aea7564f8bbce58a2cf078636e85067db Mon Sep 17 00:00:00 2001 From: Joe Wallwork Date: Wed, 17 Apr 2024 17:20:02 +0100 Subject: [PATCH] #60: Fix another formatting issue --- demos/laplacian_smoothing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/laplacian_smoothing.py b/demos/laplacian_smoothing.py index 78920d1..0e59cb2 100644 --- a/demos/laplacian_smoothing.py +++ b/demos/laplacian_smoothing.py @@ -22,7 +22,7 @@ # To motivate why we might want to take this sort of approach, consider momentarily the # 1D case, where we have velocities :math:`\{v_i\}_{i=1}^n` at each of a sequence of # :math:`n\in\mathbb{N}` points with uniform separation :math:`h`. If we want to smooth -# out the local variation in the velocities in the vicinity of :math:`v_i, we might +# out the local variation in the velocities in the vicinity of :math:`v_i`, we might # consider averaging out :math:`(v_{i-1}-v_i)/h` and :math:`(v_{i+1}-v_i)/h`. Doing so # gives #