From 0558bf84354edfee35ffbfe0c85cd841fa62bfea Mon Sep 17 00:00:00 2001 From: Giacomo Stevanato Date: Sun, 30 Jun 2024 14:34:11 +0200 Subject: [PATCH] Remove mention of clamping in bevy_color documentation --- crates/bevy_color/src/color.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_color/src/color.rs b/crates/bevy_color/src/color.rs index dbf0bfe52f1ec..92fa2b98fd559 100644 --- a/crates/bevy_color/src/color.rs +++ b/crates/bevy_color/src/color.rs @@ -17,7 +17,7 @@ use bevy_reflect::prelude::*; /// # Operations /// /// [`Color`] supports all the standard color operations, such as [mixing](Mix), -/// [luminance](Luminance) and [hue](Hue) adjustment, clamping, +/// [luminance](Luminance) and [hue](Hue) adjustment, /// and [diffing](EuclideanDistance). These operations delegate to the concrete color space contained /// by [`Color`], but will convert to [`Oklch`](Oklcha) for operations which aren't supported in the /// current space. After performing the operation, if a conversion was required, the result will be