1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 05:10:03 -04:00

Fix misc typos

Closes https://github.com/emilk/egui/pull/366
Closes https://github.com/emilk/egui/pull/365
This commit is contained in:
Emil Ernerfeldt
2021-05-10 10:52:49 +02:00
parent 7747a1f171
commit cf3d12669c
3 changed files with 4 additions and 4 deletions

View File

@@ -431,7 +431,7 @@ fn paint_resize_corner(
#[derive(Clone, Copy, Debug)]
struct PossibleInteractions {
movable: bool,
// Which sized can we drag to resize?
// Which sides can we drag to resize?
resize_left: bool,
resize_right: bool,
resize_top: bool,

View File

@@ -231,7 +231,7 @@
//!
//! // A `scope` creates a temporary [`Ui`] in which you can change settings:
//! ui.scope(|ui|{
//! // Change test color on subsequent widgets:
//! // Change text color on subsequent widgets:
//! ui.visuals_mut().override_text_color = Some(egui::Color32::RED);
//!
//! // Turn off text wrapping on subsequent widgets: