diff --git a/fitsio/src/headers/header_value.rs b/fitsio/src/headers/header_value.rs index a999a4f1..3a3ea47a 100644 --- a/fitsio/src/headers/header_value.rs +++ b/fitsio/src/headers/header_value.rs @@ -14,7 +14,7 @@ pub struct HeaderValue { pub comment: Option, } -// Allow printing of `HeaderValue`s +/// Allow printing of `HeaderValue`s impl Debug for HeaderValue where T: Debug, @@ -27,8 +27,8 @@ where } } -// Allow comparing of `HeaderValue`'s where the `value` is equatable -// so that e.g. `HeaderValue` can be compared to `f64` +/// Allow comparing of `HeaderValue`'s where the `value` is equatable +/// so that e.g. `HeaderValue` can be compared to `f64` impl PartialEq for HeaderValue where T: PartialEq, @@ -38,7 +38,7 @@ where } } -/// Allow `HeaderValue` to be clnned +/// Allow `HeaderValue` to be cloned /// /// ```rust /// # use fitsio::headers::HeaderValue;