From ff9059fe68b65c05fe0d60995bd839c8389ddddc Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 19 May 2021 09:03:49 -0500 Subject: [PATCH] Fix typo. --- egui/src/data/output.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egui/src/data/output.rs b/egui/src/data/output.rs index 590a72f2..b23f6f00 100644 --- a/egui/src/data/output.rs +++ b/egui/src/data/output.rs @@ -24,7 +24,7 @@ pub struct Output { /// Events that may be useful to e.g. a screen reader. pub events: Vec, - /// Position of text widgts' cursor + /// Position of text widget's cursor pub text_cursor: Option, }