Skip to content

Commit

Permalink
doc: move module documentation in concerned file
Browse files Browse the repository at this point in the history
  • Loading branch information
gwen-lg committed Feb 5, 2024
1 parent 89ecfaa commit c452196
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
#![recursion_limit = "1024"]

mod errors;
/// Module for SubRip/Srt fonctionnalities
pub mod srt;
/// Module for time management
pub mod time;
mod util;
pub mod vobsub;
Expand Down
2 changes: 1 addition & 1 deletion src/srt.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// SubRip/Srt fonctionnality
//! SubRip/Srt fonctionnality
use std::io;

use crate::time::TimeSpan;
Expand Down
1 change: 1 addition & 0 deletions src/time/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//! Subtitle Time management
mod time_point;
mod time_span;

Expand Down

0 comments on commit c452196

Please sign in to comment.