Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/output.rs')
-rw-r--r--crates/parser/src/output.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/parser/src/output.rs b/crates/parser/src/output.rs
index 386d03a62c..0ea15a656c 100644
--- a/crates/parser/src/output.rs
+++ b/crates/parser/src/output.rs
@@ -16,8 +16,9 @@ pub struct Output {
/// 32-bit encoding of events. If LSB is zero, then that's an index into the
/// error vector. Otherwise, it's one of the thee other variants, with data encoded as
///
- /// |16 bit kind|8 bit n_input_tokens|4 bit tag|4 bit leftover|
- ///
+ /// ```text
+ /// |16 bit kind|8 bit n_input_tokens|4 bit tag|4 bit leftover|
+ /// ``````
event: Vec<u32>,
error: Vec<String>,
}