From 0a5cf3156e96584cfc87fd94dd27f462ecd76467 Mon Sep 17 00:00:00 2001 From: n4n5 Date: Mon, 5 Jan 2026 03:44:21 -0700 Subject: [PATCH] Improve docstring for egui_extras features (#7813) It's nice to have * [x] I have followed the instructions in the PR template --- crates/egui/src/load.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/load.rs b/crates/egui/src/load.rs index fd15322fb..99909eca1 100644 --- a/crates/egui/src/load.rs +++ b/crates/egui/src/load.rs @@ -3,7 +3,7 @@ //! If you just want to display some images, [`egui_extras`](https://crates.io/crates/egui_extras/) //! will get you up and running quickly with its reasonable default implementations of the traits described below. //! -//! 1. Add [`egui_extras`](https://crates.io/crates/egui_extras/) as a dependency with the `all_loaders` feature. +//! 1. Add [`egui_extras`](https://crates.io/crates/egui_extras/) as a dependency with the `all_loaders` feature (`cargo add egui_extras -F all_loaders`). //! 2. Add a call to [`egui_extras::install_image_loaders`](https://docs.rs/egui_extras/latest/egui_extras/fn.install_image_loaders.html) //! in your app's setup code. //! 3. Use [`Ui::image`][`crate::ui::Ui::image`] with some [`ImageSource`][`crate::ImageSource`].