Skip to content

Commit

Permalink
refactor: Make Selector's field private
Browse files Browse the repository at this point in the history
  • Loading branch information
volsa authored and teymour-aldridge committed Sep 6, 2022
1 parent 8a53f01 commit 0a6c6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/selector.rs
Expand Up @@ -17,7 +17,7 @@ use crate::ElementRef;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Selector {
/// The CSS selectors.
pub selectors: SmallVec<[parser::Selector<Simple>; 1]>,
selectors: SmallVec<[parser::Selector<Simple>; 1]>,
}

impl Selector {
Expand Down

0 comments on commit 0a6c6f5

Please sign in to comment.