Skip to content

Commit

Permalink
added return type to 'try_apply' in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
feyokorenhof committed Nov 27, 2022
1 parent 0f611ff commit 78f5fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_reflect/src/utility.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl NonGenericTypeInfoCell {
/// # fn as_reflect(&self) -> &dyn Reflect { todo!() }
/// # fn as_reflect_mut(&mut self) -> &mut dyn Reflect { todo!() }
/// # fn apply(&mut self, value: &dyn Reflect) { todo!() }
/// # fn try_apply(&mut self, value: &dyn Reflect) { todo!() }
/// # fn try_apply(&mut self, value: &dyn Reflect) -> Result<(), ApplyError> { todo!() }
/// # fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>> { todo!() }
/// # fn reflect_ref(&self) -> ReflectRef { todo!() }
/// # fn reflect_mut(&mut self) -> ReflectMut { todo!() }
Expand Down

0 comments on commit 78f5fbe

Please sign in to comment.