diff --git a/crates/bevy_render/src/camera/projection.rs b/crates/bevy_render/src/camera/projection.rs index 274530a4cf3c3..16310ec382f83 100644 --- a/crates/bevy_render/src/camera/projection.rs +++ b/crates/bevy_render/src/camera/projection.rs @@ -489,7 +489,7 @@ impl OrthographicProjection { /// Returns the default orthographic projection for a 2D context. /// /// The near plane is set to a negative value so that the camera can still - /// render the scene when using positive z coordinates for foreground elements. + /// render the scene when using positive z coordinates to order foreground elements. pub fn default_2d() -> Self { OrthographicProjection { near: -1000.0,