From 5883095bcc2c3cc33727f68e3f9ac42248d2bc6d Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 26 Apr 2025 02:34:48 +0100 Subject: [PATCH] Add documentation comments for matrix, frame, and utils modules --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 7ea02d4..a68c8c9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,10 @@ #![doc = include_str!("../README.md")] +/// Documentation for the [`crate::matrix`] module. pub mod matrix; +/// Documentation for the [`crate::frame`] module. pub mod frame; +/// Documentation for the [`crate::utils`] module. pub mod utils;