summary refs log tree commit diff
path: root/sys_util/src/struct_util.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sys_util/src/struct_util.rs')
-rw-r--r--sys_util/src/struct_util.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys_util/src/struct_util.rs b/sys_util/src/struct_util.rs
index 22411a1..d77dd96 100644
--- a/sys_util/src/struct_util.rs
+++ b/sys_util/src/struct_util.rs
@@ -18,10 +18,10 @@ fn vec_with_size_in_bytes<T: Default>(size_in_bytes: usize) -> Vec<T> {
 
 /// The kvm API has many structs that resemble the following `Foo` structure:
 ///
-/// ```
+/// ```ignore
 /// #[repr(C)]
 /// struct Foo {
-///    some_data: u32
+///    some_data: u32,
 ///    entries: __IncompleteArrayField<__u32>,
 /// }
 /// ```