From 116c1bc080e06b88d929b8327a316a725852d709 Mon Sep 17 00:00:00 2001 From: rudderbucky Date: Mon, 30 Sep 2024 11:55:46 -0700 Subject: [PATCH] Fix some typos in custom_post_processing.rs (#15539) # Objective - Fix some typos in the `custom_post_processing.rs` example Co-authored-by: Alice Cecile --- examples/shader/custom_post_processing.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/shader/custom_post_processing.rs b/examples/shader/custom_post_processing.rs index a81001dedb6b5..96d56259d5374 100644 --- a/examples/shader/custom_post_processing.rs +++ b/examples/shader/custom_post_processing.rs @@ -263,7 +263,7 @@ impl FromWorld for PostProcessPipeline { let pipeline_id = world .resource_mut::() - // This will add the pipeline to the cache and queue it's creation + // This will add the pipeline to the cache and queue its creation .queue_render_pipeline(RenderPipelineDescriptor { label: Some("post_process_pipeline".into()), layout: vec![layout.clone()], @@ -282,7 +282,7 @@ impl FromWorld for PostProcessPipeline { })], }), // All of the following properties are not important for this effect so just use the default values. - // This struct doesn't have the Default trait implemented because not all field can have a default value. + // This struct doesn't have the Default trait implemented because not all fields can have a default value. primitive: PrimitiveState::default(), depth_stencil: None, multisample: MultisampleState::default(), @@ -374,7 +374,7 @@ fn update_settings(mut settings: Query<&mut PostProcessSettings>, time: Res