From feb7753a73755b32d348a9655d8fcc3bd651b474 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 27 Nov 2023 11:54:56 -0500 Subject: [PATCH] Fix typo in `uniform_list`'s doc comment --- crates/gpui2/src/elements/uniform_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui2/src/elements/uniform_list.rs b/crates/gpui2/src/elements/uniform_list.rs index 1ddddf9c783fd5fbca5cdee60a5860f9e2a9c29d..8e61f247bda3b9247c515cd9e2714d30da5b1291 100644 --- a/crates/gpui2/src/elements/uniform_list.rs +++ b/crates/gpui2/src/elements/uniform_list.rs @@ -9,7 +9,7 @@ use taffy::style::Overflow; /// uniform_list provides lazy rendering for a set of items that are of uniform height. /// When rendered into a container with overflow-y: hidden and a fixed (or max) height, -/// uniform_list will only render the visibile subset of items. +/// uniform_list will only render the visible subset of items. pub fn uniform_list( view: View, id: I,