From a027ebd37175ac4b02c604ba95c6cfff0e1f3da0 Mon Sep 17 00:00:00 2001 From: JupiterSky Date: Sat, 29 Jun 2024 12:33:21 -0400 Subject: [PATCH] Fix spelling on perlin_surflet.rs docs The description spelled "This" as "THis". --- src/noise_fns/generators/perlin_surflet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/noise_fns/generators/perlin_surflet.rs b/src/noise_fns/generators/perlin_surflet.rs index d0c946d1..08dadeb5 100644 --- a/src/noise_fns/generators/perlin_surflet.rs +++ b/src/noise_fns/generators/perlin_surflet.rs @@ -6,7 +6,7 @@ use crate::{ /// Noise function that outputs 2/3/4-dimensional Perlin noise. /// -/// THis is a variant of original perlin noise, based on the principles of simplex noise to +/// This is a variant of original perlin noise, based on the principles of simplex noise to /// calculate the values at a point using wavelets instead of interpolated gradients. #[derive(Clone, Copy, Debug)] pub struct PerlinSurflet {