mirror of
https://github.com/emilk/egui.git
synced 2026-08-31 13:50:04 -04:00
Replace "an ui" with "a ui" (#5185)
Since ui's initial sound is a "y", it should be "a ui", not "an ui". Replaced case-sensitively using regex `([aA])n ([uU][iI])` replacement `$1 $2` * [x] I have followed the instructions in the PR template
This commit is contained in:
@@ -57,7 +57,7 @@ pub use self::{
|
||||
/// Tip: you can `impl Widget for &mut YourThing { }`.
|
||||
///
|
||||
/// `|ui: &mut Ui| -> Response { … }` also implements [`Widget`].
|
||||
#[must_use = "You should put this widget in an ui with `ui.add(widget);`"]
|
||||
#[must_use = "You should put this widget in a ui with `ui.add(widget);`"]
|
||||
pub trait Widget {
|
||||
/// Allocate space, interact, paint, and return a [`Response`].
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user