aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame.rs')
-rw-r--r--src/frame.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/frame.rs b/src/frame.rs
index 17c6c5a..c617056 100644
--- a/src/frame.rs
+++ b/src/frame.rs
@@ -1,8 +1,9 @@
/// Represents a single ttyrec frame.
///
-/// Ttyrec files are a raw concatenation of frames. Note that the `time` field
-/// in each frame is the time since the start of the entire file, and it is
-/// invalid for the `time` fields in a ttyrec file to be decreasing.
+/// Ttyrec files are a raw concatenation of frames. Note that the timestamps
+/// in the frame are absolute timestamps, and only the difference between them
+/// is relevant. The base timestamp can be anything (common choices are 0 or
+/// the actual time that the frame was generated).
///
/// Frame objects are typically created via the `Creator`, `Parser`, or
/// `Reader` classes.