From 52e4dbbef8916c3a07f0285233c00cb068b4b01e Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 9 Mar 2023 18:20:45 +0900 Subject: [PATCH] Fix typo in utility.rs (#7997) --- crates/bevy_reflect/bevy_reflect_derive/src/utility.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_reflect/bevy_reflect_derive/src/utility.rs b/crates/bevy_reflect/bevy_reflect_derive/src/utility.rs index cb9b11957c91fc..c0675d5363ea5a 100644 --- a/crates/bevy_reflect/bevy_reflect_derive/src/utility.rs +++ b/crates/bevy_reflect/bevy_reflect_derive/src/utility.rs @@ -92,7 +92,7 @@ impl Default for WhereClauseOptions { /// # Arguments /// /// * `where_clause`: existing `where` clause present on the object to be derived -/// * `where_clause_options`: additional paramters defining which trait bounds to add to the `where` clause +/// * `where_clause_options`: additional parameters defining which trait bounds to add to the `where` clause /// /// # Example ///