Fix test failures: correct EBML size assertion, fix doc tests

- Fix write_size test: 127 encodes as [0x40, 0x7F] not [0xC0, 0x7F]
- Mark doc examples as ignore (use incomplete pseudo-code)
This commit is contained in:
MattJackson
2026-04-10 08:23:32 -07:00
parent 01d26c8e33
commit 5990ec9566
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
//! The app registers a callback to receive them.
//! No display logic, no English text — just data.
//!
//! ```rust
//! ```rust,ignore
//! disc.rip(&mut session, 0, output, |event| {
//! match event.kind {
//! EventKind::BytesRead { bytes, total } => update_progress(bytes, total),