From ebc5cb352d781fd51f14e588ee8045c03f2d2f04 Mon Sep 17 00:00:00 2001 From: A-Walrus Date: Fri, 6 Jan 2023 17:46:44 +0000 Subject: [PATCH] Fix doc comment "Turbo" -> "Extreme" (#7091) # Objective Doc comment mentions turbo which is a sensitivity that doesn't exist. ## Solution Change the comment to "Extreme" which does exist --- crates/bevy_core_pipeline/src/fxaa/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/bevy_core_pipeline/src/fxaa/mod.rs b/crates/bevy_core_pipeline/src/fxaa/mod.rs index f49425e725..c843d0df1e 100644 --- a/crates/bevy_core_pipeline/src/fxaa/mod.rs +++ b/crates/bevy_core_pipeline/src/fxaa/mod.rs @@ -47,7 +47,8 @@ pub struct Fxaa { /// Use lower sensitivity for a sharper, faster, result. /// Use higher sensitivity for a slower, smoother, result. - /// Ultra and Turbo settings can result in significant smearing and loss of detail. + /// [Ultra](`Sensitivity::Ultra`) and [Extreme](`Sensitivity::Extreme`) + /// settings can result in significant smearing and loss of detail. /// The minimum amount of local contrast required to apply algorithm. pub edge_threshold: Sensitivity,