diff --git a/crates/bevy_text/src/text2d.rs b/crates/bevy_text/src/text2d.rs index cc8e1cd25249c..509108cb501e2 100644 --- a/crates/bevy_text/src/text2d.rs +++ b/crates/bevy_text/src/text2d.rs @@ -34,7 +34,7 @@ use bevy_window::{PrimaryWindow, Window, WindowScaleFactorChanged}; /// [`Text2dBundle`] was removed in favor of required components. /// The core component is now [`Text2d`] which can contain a single text segment. -/// Indexed access to segments can be done with the new [`TextUiReader`] and [`TextUiWriter`] system params. +/// Indexed access to segments can be done with the new [`Text2dReader`] and [`Text2dWriter`] system params. /// Additional segments can be added through children with [`TextSpan`](crate::text::TextSpan). /// Text configuration can be done with [`TextLayout`], [`TextFont`] and [`TextColor`], /// while sprite-related configuration uses [`TextBounds`] and [`Anchor`] components.