From 076f54e534d4bbe709353622c09b1c61a8844a69 Mon Sep 17 00:00:00 2001 From: NathanW Date: Fri, 25 Jun 2021 00:16:48 -0600 Subject: [PATCH] update doc comment --- crates/bevy_reflect/src/array.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_reflect/src/array.rs b/crates/bevy_reflect/src/array.rs index 4505d4d95d83c..3a06842c44dbb 100644 --- a/crates/bevy_reflect/src/array.rs +++ b/crates/bevy_reflect/src/array.rs @@ -4,7 +4,7 @@ use std::{ hash::{Hash, Hasher}, }; -/// An ordered, static-sized, mutable array of [`Reflect`] items. +/// A static-sized array of [`Reflect`] items. /// This corresponds to types like `[T; N]` (arrays) pub trait Array: Reflect { fn get(&self, index: usize) -> Option<&dyn Reflect>;