We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20d6be8 commit c18ad5cCopy full SHA for c18ad5c
1 file changed
vcf/src/vcf.rs
@@ -139,7 +139,7 @@ impl From<parse::ParseError> for VCFError {
139
/// "#;
140
///# use vcf::vcf::VCFError;
141
/// let vcf = parse_vcf(&vcf_source[..])?;
142
-/// let hq_description = vcf.format
+/// let hq = vcf.format
143
/// .iter()
144
/// .find(
145
/// |item| match &item.value {
@@ -148,7 +148,7 @@ impl From<parse::ParseError> for VCFError {
148
/// }
149
/// ).unwrap();
150
/// assert_eq!(
151
-/// *hq_description,
+/// *hq,
152
/// Header {
153
/// key: "FORMAT".to_string(),
154
/// value: HeaderValue::Nested(HashMap::from([
0 commit comments