diff --git a/src/meta_plugin/text.rs b/src/meta_plugin/text.rs index 84edb4c..b719329 100644 --- a/src/meta_plugin/text.rs +++ b/src/meta_plugin/text.rs @@ -428,7 +428,7 @@ impl MetaPlugin for TextMetaPlugin { let mut metadata = Vec::new(); - // Check if we have head/tail/line range options that would affect processing + // Check if we have head/tail options that would affect processing // These options come from the base plugin's options let head_bytes = self.base.options.get("head_bytes") .and_then(|v| v.as_u64()) @@ -560,7 +560,7 @@ impl MetaPlugin for TextMetaPlugin { let mut metadata = Vec::new(); - // Check if we have head/tail/line range options + // Check if we have head/tail options let head_bytes = self.base.options.get("head_bytes") .and_then(|v| v.as_u64()) .map(|v| v as usize);