From 28efc1401a43b16df98d881b2fda7ae3b17b56e3 Mon Sep 17 00:00:00 2001 From: Rich Churcher Date: Sat, 23 Nov 2024 11:16:26 +1300 Subject: [PATCH] and -> an (#16483) Fix stray character in docs. --- crates/bevy_render/src/render_resource/bind_group.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 | /// |------------------------|-------------------------------------------------------------------------|----------------------|