From 37bfeb8f6c42ebc434c090d95cceaec8f607f5b7 Mon Sep 17 00:00:00 2001 From: Ben Frankel Date: Wed, 4 Sep 2024 17:00:42 +0300 Subject: [PATCH] Fix broken link to `src/theme/widgets.rs` (#294) Thanks to `krunchington` for reporting this issue on Discord :) --- docs/design.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design.md b/docs/design.md index c2e8240..8596511 100644 --- a/docs/design.md +++ b/docs/design.md @@ -87,7 +87,7 @@ but feel free to leave out a plugin if your file does not need to do anything wi ### Pattern -Spawn your UI elements by extending the [`Widgets` trait](../src/ui/widgets.rs): +Spawn your UI elements by extending the [`Widgets` trait](../src/theme/widgets.rs): ```rust pub trait Widgets {