From a3b64def8a332caefb3e503a81bc3b1c6d77250c Mon Sep 17 00:00:00 2001 From: Phil Ellison Date: Sat, 18 Jan 2025 22:12:26 +0000 Subject: [PATCH] Correct 'Text2dBundle' to 'Text2d' in example comment --- examples/2d/text2d.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/2d/text2d.rs b/examples/2d/text2d.rs index efe57c530cd21..6dafd3737875a 100644 --- a/examples/2d/text2d.rs +++ b/examples/2d/text2d.rs @@ -1,6 +1,6 @@ //! Shows text rendering with moving, rotating and scaling text. //! -//! Note that this uses [`Text2dBundle`] to display text alongside your other entities in a 2D scene. +//! Note that this uses [`Text2d`] to display text alongside your other entities in a 2D scene. //! //! For an example on how to render text as part of a user interface, independent from the world //! viewport, you may want to look at `games/contributors.rs` or `ui/text.rs`.