Skip to content

Commit 4227b75

Browse files
committed
doc fix
1 parent 5edbb31 commit 4227b75

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

crates/bevy_reflect/src/serde/de/deserializer.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::{
1414
use core::{fmt, fmt::Formatter};
1515
use serde::de::{DeserializeSeed, Error, IgnoredAny, MapAccess, Visitor};
1616

17-
/// Allows overriding the default deserialization behavior of
17+
/// Allows overriding the default deserialization behaviour of
1818
/// [`ReflectDeserializer`] and [`TypedReflectDeserializer`] for specific
1919
/// [`TypeRegistration`]s.
2020
///
@@ -27,8 +27,7 @@ use serde::de::{DeserializeSeed, Error, IgnoredAny, MapAccess, Visitor};
2727
/// Whenever the deserializer attempts to deserialize a value, it will first
2828
/// call [`try_deserialize`] on your processor, which may take ownership of the
2929
/// deserializer and give back a [`Box<dyn PartialReflect>`], or return
30-
/// ownership of the deserializer back to the deserializer, and continue with
31-
/// the default logic.
30+
/// ownership of the deserializer back, and continue with the default logic.
3231
///
3332
/// # Examples
3433
///

0 commit comments

Comments
 (0)