From 6715ed5cea7ca2fba5a3c7cff64f33f78ec26e5d Mon Sep 17 00:00:00 2001 From: libertyteeth <32841567+libertyteeth@users.noreply.github.com> Date: Sun, 26 Nov 2023 17:33:54 -0500 Subject: [PATCH] Update viewport.rs, fix comment typo: "vieweport" -> "viewport" (#3638) No code changes. Just fixing a typo in a comment. Closes #3637. --- crates/egui/src/viewport.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/viewport.rs b/crates/egui/src/viewport.rs index d10d13897f8..45d2e535324 100644 --- a/crates/egui/src/viewport.rs +++ b/crates/egui/src/viewport.rs @@ -255,7 +255,7 @@ pub type ImmediateViewportRendererCallback = dyn for<'a> Fn(&Context, ImmediateV #[derive(Clone, Debug, Default, Eq, PartialEq)] #[allow(clippy::option_option)] pub struct ViewportBuilder { - /// The title of the vieweport. + /// The title of the viewport. /// `eframe` will use this as the title of the native window. pub title: Option,