aboutsummaryrefslogtreecommitdiff
path: root/ebml_derive/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-01-28 03:21:03 +0100
committermetamuffin <metamuffin@disroot.org>2024-01-28 03:21:03 +0100
commitce9eb140ab9243d1c87ace4727a82b7fa50f964b (patch)
treeb64da94ba58f72a2371cdd8644dc48a178b7d260 /ebml_derive/src/lib.rs
parentb514ec8cea2c2143e0bd7a0eb377c96a6f091d0d (diff)
downloadjellything-ce9eb140ab9243d1c87ace4727a82b7fa50f964b.tar
jellything-ce9eb140ab9243d1c87ace4727a82b7fa50f964b.tar.bz2
jellything-ce9eb140ab9243d1c87ace4727a82b7fa50f964b.tar.zst
fix yet another fundamental issue in the ebml reader and seekindex.
Diffstat (limited to 'ebml_derive/src/lib.rs')
-rw-r--r--ebml_derive/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ebml_derive/src/lib.rs b/ebml_derive/src/lib.rs
index 6b650f1..ab6cff8 100644
--- a/ebml_derive/src/lib.rs
+++ b/ebml_derive/src/lib.rs
@@ -116,7 +116,7 @@ pub fn define_ebml(ts: TokenStream) -> TokenStream {
#(#enum_variants),*
}
impl MatroskaTag {
- /// returns path in **reverse** order or None if global.
+ /// returns path in order top-to-immediate-parent order or None if global.
pub fn path(&self) -> Option<&'static [u64]> {
match self { #(#path_match),* }
}