@@ -20,8 +20,9 @@ pub trait SyncRelatedAppExt {
2020 /// Ensures that entities related by `C` are replicated in sync.
2121 ///
2222 /// By default, we split mutations across multiple messages to apply them independently.
23- /// We guarantee that all mutations for a single entity arrive together, but mutations for
24- /// separate entities may be received independently if they arrive in different messages.
23+ /// We guarantee that all mutations for a single entity won't be split across messages,
24+ /// but mutations for separate entities may be received independently if they arrive in
25+ /// different messages.
2526 ///
2627 /// Calling this method guarantees that all mutations related by `C` are included in
2728 /// a single message.
@@ -36,7 +37,7 @@ pub trait SyncRelatedAppExt {
3637 /// app.sync_related_entities::<ChildOf>();
3738 ///
3839 /// // Changes to any replicated components on these
39- /// // entities will be replicated together .
40+ /// // entities will be replicated in sync .
4041 /// app.world_mut().spawn((
4142 /// Replicated,
4243 /// Transform::default(),
@@ -65,7 +66,7 @@ impl SyncRelatedAppExt for App {
6566/// Each graph represented by index.
6667#[ derive( Resource , Default ) ]
6768pub ( crate ) struct RelatedEntities {
68- /// Global graph of of all relationship types marked for replication together .
69+ /// Global graph of all relationship types marked for replication in sync .
6970 ///
7071 /// We use a stable graph to avoid indices invalidation since we map them to entities and
7172 /// can't use graphmap because it doesn't support parallel connections (needed when
0 commit comments