From 4cd0cc9a298e3457d822605cb74521f502f77a16 Mon Sep 17 00:00:00 2001 From: Ian Guinn Date: Mon, 21 Oct 2024 10:51:03 -0400 Subject: [PATCH] Spelling correction for pre-commit bot --- src/dspeed/processors/gaussian_filter1d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dspeed/processors/gaussian_filter1d.py b/src/dspeed/processors/gaussian_filter1d.py index d160f8e..13f8222 100644 --- a/src/dspeed/processors/gaussian_filter1d.py +++ b/src/dspeed/processors/gaussian_filter1d.py @@ -30,7 +30,7 @@ # All this code belongs to the team that coded Scipy, found at this link: # https://github.com/scipy/scipy/blob/v1.6.0/scipy/ndimage/filters.py#L210-L260 -# The only thing changed was the calculation of the convulution, which +# The only thing changed was the calculation of the convolution, which # originally called a function from a C library. In this code, the convolution is # performed with NumPy's built in convolution function. from __future__ import annotations