From fb5cb3052d693981af6b2858849b77f208446108 Mon Sep 17 00:00:00 2001 From: tlhenvironment <53440512+tlhenvironment@users.noreply.github.com> Date: Sat, 4 Feb 2023 13:53:20 +0100 Subject: [PATCH] Fix typo in docstring (#2643) Tiny typo fix <3 --- crates/egui/src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/ui.rs b/crates/egui/src/ui.rs index 50739c56..04fab7e4 100644 --- a/crates/egui/src/ui.rs +++ b/crates/egui/src/ui.rs @@ -1572,7 +1572,7 @@ impl Ui { /// } /// ``` /// - /// Se also [`crate::Image`] and [`crate::ImageButton`]. + /// See also [`crate::Image`] and [`crate::ImageButton`]. #[inline] pub fn image(&mut self, texture_id: impl Into, size: impl Into) -> Response { Image::new(texture_id, size).ui(self)