Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/rust/lib_ccxr/src/time/timing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::sync::RwLock;

/// The maximum allowed difference between [`TimingContext::current_pts`] and [`TimingContext::sync_pts`] in seconds.
///
/// If the difference crosses this value, a PTS jump has occured and is handled accordingly.
/// If the difference crosses this value, a PTS jump has occurred and is handled accordingly.
const MAX_DIF: i64 = 5;

/// A unique global instance of [`GlobalTimingInfo`] to be used throughout the program.
Expand Down
2 changes: 1 addition & 1 deletion src/rust/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ impl OptionsExt for Options {
}

if self.extract_chapters {
println!("Request to extract chapters recieved.");
println!("Request to extract chapters received.");
println!("Note that this must only be used with MP4 files,");
println!("for other files it will simply generate subtitles file.\n");
}
Expand Down
Loading