Browse Source

Mention 2x serde attributes is not a typo

index-subcmd
Vincent Prouillet 6 years ago
parent
commit
de80de1628
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      components/config/src/lib.rs

+ 1
- 1
components/config/src/lib.rs View File

@@ -55,7 +55,7 @@ pub struct Config {
/// Had to remove the PartialEq derive because GlobSet does not implement it. No impact
/// because it's unused anyway (who wants to sort Configs?).
pub ignored_content: Option<Vec<String>>,
#[serde(skip_serializing, skip_deserializing)]
#[serde(skip_serializing, skip_deserializing)] // not a typo, 2 are needed
pub ignored_content_globber: Option<GlobSet>,

/// Languages list and translated strings


Loading…
Cancel
Save