From 1e9d6b4aaa0ac64b83c55ef6eb0216d7fe4e942f Mon Sep 17 00:00:00 2001 From: oskgo <92018610+oskgo@users.noreply.github.com> Date: Mon, 27 Mar 2023 22:41:51 +0200 Subject: [PATCH] typo: `childfren` -> `children` (#381) --- library/src/layout/stack.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/layout/stack.rs b/library/src/layout/stack.rs index b17104dff..c85eda2d4 100644 --- a/library/src/layout/stack.rs +++ b/library/src/layout/stack.rs @@ -32,7 +32,7 @@ pub struct StackElem { /// Spacing to insert between items where no explicit spacing was provided. pub spacing: Option, - /// The childfren to stack along the axis. + /// The children to stack along the axis. #[variadic] pub children: Vec, }