From fadbc0bf2ef0014aae0eece11763c70dc0f0530b Mon Sep 17 00:00:00 2001 From: LightArrowsEXE Date: Mon, 20 Nov 2023 00:11:03 +0100 Subject: [PATCH] Bicubic: Fix typos (oops) --- vskernels/kernels/bicubic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vskernels/kernels/bicubic.py b/vskernels/kernels/bicubic.py index df7f336..9320117 100644 --- a/vskernels/kernels/bicubic.py +++ b/vskernels/kernels/bicubic.py @@ -120,14 +120,14 @@ def __init__(self, **kwargs: Any) -> None: class AdobeBicubicSharper(Bicubic): - """Bicuboc b=0, c=1, blur=1.05; Adobe's "Bicubic Sharper" interpolation preset.""" + """Bicubic b=0, c=1, blur=1.05; Adobe's "Bicubic Sharper" interpolation preset.""" def __init__(self, **kwargs: Any) -> None: super().__init__(b=0, c=1, blur=1.05, **kwargs) class AdobeBicubicSmoother(Bicubic): - """Bicuboc b=0, c=0.625, blur=1.15 ; Adobe's "Bicubic Smoother" interpolation preset.""" + """Bicubic b=0, c=0.625, blur=1.15 ; Adobe's "Bicubic Smoother" interpolation preset.""" def __init__(self, **kwargs: Any) -> None: super().__init__(b=0, c=5 / 8, blur=1.15, **kwargs)