From 406d3b413d41981f624b3a95f0180bf3999eb172 Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Wed, 21 Aug 2024 14:24:38 -0700 Subject: [PATCH] gpui: Remove extra "which" in comment (#16620) Fix a typo in the comment... Release Notes: - N/A --- crates/gpui/src/element.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui/src/element.rs b/crates/gpui/src/element.rs index 19c5f41683..f0c5119033 100644 --- a/crates/gpui/src/element.rs +++ b/crates/gpui/src/element.rs @@ -7,7 +7,7 @@ //! //! # Element Basics //! -//! Elements are constructed by calling [`Render::render()`] on the root view of the window, which +//! Elements are constructed by calling [`Render::render()`] on the root view of the window, //! which recursively constructs the element tree from the current state of the application,. //! These elements are then laid out by Taffy, and painted to the screen according to their own //! implementation of [`Element::paint()`]. Before the start of the next frame, the entire element