diff --git a/crates/bevy_render/src/render_resource/bind_group.rs b/crates/bevy_render/src/render_resource/bind_group.rs index 2753616aa0..d851389fa7 100644 --- a/crates/bevy_render/src/render_resource/bind_group.rs +++ b/crates/bevy_render/src/render_resource/bind_group.rs @@ -172,7 +172,7 @@ impl Deref for BindGroup { /// * The field's [`Handle`](bevy_asset::Handle) will be used to look up the matching [`Buffer`] GPU resource, which /// will be bound as a storage buffer in shaders. If the `storage` attribute is used, the field is expected a raw /// buffer, and the buffer will be bound as a storage buffer in shaders. -/// * It supports and optional `read_only` parameter. Defaults to false if not present. +/// * It supports an optional `read_only` parameter. Defaults to false if not present. /// /// | Arguments | Values | Default | /// |------------------------|-------------------------------------------------------------------------|----------------------|