From f851bbeb91cb310cc0b0c8ebc971f768fe377ecb Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 31 Dec 2021 11:10:22 +0100 Subject: [PATCH] Remove half-formed thought from docstring --- egui/src/context.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/egui/src/context.rs b/egui/src/context.rs index 692ac599..6cdc9169 100644 --- a/egui/src/context.rs +++ b/egui/src/context.rs @@ -100,9 +100,6 @@ impl CtxRef { /// This will modify the internal reference to point to a new generation of [`Context`]. /// Any old clones of this [`CtxRef`] will refer to the old [`Context`], which will not get new input. /// - /// In the future [`Self::run`] may be extended to do multi-pass, - /// i.e. call the application code twice. This will make - /// /// You can alternatively run [`Self::begin_single_pass_frame`] and [`Self::end_single_pass_frame`]. /// /// ``` rust