From e41bf65cb5d1dda81d68873a4f7c834fcacd29ab Mon Sep 17 00:00:00 2001 From: JMS55 <47158642+JMS55@users.noreply.github.com> Date: Sun, 1 Oct 2023 13:18:34 -0700 Subject: [PATCH] Fix comment grammar (#9990) --- crates/bevy_core_pipeline/src/skybox/skybox.wgsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_core_pipeline/src/skybox/skybox.wgsl b/crates/bevy_core_pipeline/src/skybox/skybox.wgsl index 856cde7d96eaf0..cf22c2b2970f2b 100644 --- a/crates/bevy_core_pipeline/src/skybox/skybox.wgsl +++ b/crates/bevy_core_pipeline/src/skybox/skybox.wgsl @@ -7,7 +7,7 @@ fn coords_to_ray_direction(position: vec2, viewport: vec4) -> vec3 { // Using world positions of the fragment and camera to calculate a ray direction - // break down at large translations. This code only needs to know the ray direction. + // breaks down at large translations. This code only needs to know the ray direction. // The ray direction is along the direction from the camera to the fragment position. // In view space, the camera is at the origin, so the view space ray direction is // along the direction of the fragment position - (0,0,0) which is just the