From 9ec335cad80b86b3078b313e408fe1f2aa9d55f4 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Tue, 4 Mar 2025 23:01:28 +0100 Subject: [PATCH] fix(lint): correct spelling error --- src/container.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/container.zig b/src/container.zig index 5d1e49f..6aa6a62 100644 --- a/src/container.zig +++ b/src/container.zig @@ -634,7 +634,7 @@ pub fn Container(comptime Event: type) type { } pub fn fit_resize(this: *@This()) Point { - // NOTE this is supposed to be a simple and easy to understand alogrithm, there are currently no optimizations done + // NOTE this is supposed to be a simple and easy to understand algorithm, there are currently no optimizations done const layout = this.properties.layout; var size: Point = switch (layout.direction) { .horizontal => .{ .x = layout.gap * @as(u16, @truncate(this.elements.items.len -| 1)) },