From 725b80b258dcf370aa47975bd05241e00e5f9fc1 Mon Sep 17 00:00:00 2001 From: Olivier FAURE Date: Sun, 20 Oct 2024 15:41:25 +0200 Subject: [PATCH] Fix typo --- masonry/src/doc/02_implementing_widget.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masonry/src/doc/02_implementing_widget.md b/masonry/src/doc/02_implementing_widget.md index 53a8ef7b1..638eb68cc 100644 --- a/masonry/src/doc/02_implementing_widget.md +++ b/masonry/src/doc/02_implementing_widget.md @@ -198,7 +198,7 @@ impl Widget for ColorRectangle { } ``` -Our size is static, and doesn't depend on size constraints passed by our parent or context information like "the widget is currenlty hovered", so it can be written as a one-liner. +Our size is static, and doesn't depend on size constraints passed by our parent or context information like "the widget is currently hovered", so it can be written as a one-liner. Next we write our render methods: