summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
Diffstat (limited to 'native')
-rw-r--r--native/src/widget/tree.rs2
-rw-r--r--native/src/window.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/native/src/widget/tree.rs b/native/src/widget/tree.rs
index 0af40c33..da269632 100644
--- a/native/src/widget/tree.rs
+++ b/native/src/widget/tree.rs
@@ -67,7 +67,7 @@ impl Tree {
}
}
- /// Reconciliates the children of the tree with the provided list of widgets.
+ /// Reconciles the children of the tree with the provided list of widgets.
pub fn diff_children<'a, Message, Renderer>(
&mut self,
new_children: &[impl Borrow<dyn Widget<Message, Renderer> + 'a>],
diff --git a/native/src/window.rs b/native/src/window.rs
index e768ed6d..a8f8b10f 100644
--- a/native/src/window.rs
+++ b/native/src/window.rs
@@ -21,7 +21,6 @@ pub use user_attention::UserAttention;
use crate::subscription::{self, Subscription};
use crate::time::Instant;
-use crate::window;
/// Subscribes to the frames of the window of the running application.
///