Skip to content

Commit f31d1a4

Browse files
authored
Merge pull request #2487 from vladh/fix-reconcile-typo
doc: fix "Reconciles" typo
2 parents 2ac80f8 + 10ef48c commit f31d1a4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

core/src/widget.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ where
9696
Vec::new()
9797
}
9898

99-
/// Reconciliates the [`Widget`] with the provided [`Tree`].
99+
/// Reconciles the [`Widget`] with the provided [`Tree`].
100100
fn diff(&self, _tree: &mut Tree) {}
101101

102102
/// Applies an [`Operation`] to the [`Widget`].

core/src/widget/tree.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Tree {
4646
}
4747
}
4848

49-
/// Reconciliates the current tree with the provided [`Widget`].
49+
/// Reconciles the current tree with the provided [`Widget`].
5050
///
5151
/// If the tag of the [`Widget`] matches the tag of the [`Tree`], then the
5252
/// [`Widget`] proceeds with the reconciliation (i.e. [`Widget::diff`] is called).
@@ -81,7 +81,7 @@ impl Tree {
8181
);
8282
}
8383

84-
/// Reconciliates the children of the tree with the provided list of widgets using custom
84+
/// Reconciles the children of the tree with the provided list of widgets using custom
8585
/// logic both for diffing and creating new widget state.
8686
pub fn diff_children_custom<T>(
8787
&mut self,
@@ -107,7 +107,7 @@ impl Tree {
107107
}
108108
}
109109

110-
/// Reconciliates the `current_children` with the provided list of widgets using
110+
/// Reconciles the `current_children` with the provided list of widgets using
111111
/// custom logic both for diffing and creating new widget state.
112112
///
113113
/// The algorithm will try to minimize the impact of diffing by querying the

0 commit comments

Comments
 (0)