From cdc04ab26689edd1ac63c25de97be5a9fc6d675c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6lfer?= Date: Fri, 30 Jan 2026 18:14:41 +0100 Subject: [PATCH] style: add module documentation --- src/event_source.rs | 1 + src/todo_list.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/event_source.rs b/src/event_source.rs index d0eb2f7..99e56a6 100644 --- a/src/event_source.rs +++ b/src/event_source.rs @@ -1,3 +1,4 @@ +//! Abstraction around event sourcing for the checklist application. use anyhow::Result; use crossterm::event::{self, Event}; use std::time::Duration; diff --git a/src/todo_list.rs b/src/todo_list.rs index 4d601db..4b41dd5 100644 --- a/src/todo_list.rs +++ b/src/todo_list.rs @@ -1,3 +1,4 @@ +//! Todo list UI component for the checklist application. use ratatui::style::Style; use ratatui::widgets::{Block, Borders, List, ListItem, ListState}; // use Frame via the crate root type `ratatui::Frame` in the signature below