Remove unnecessary pubs.

This commit is contained in:
Tom Alexander 2022-11-26 21:28:57 -05:00
parent f645b0cb75
commit 67e95a0adc
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 5 additions and 5 deletions

View File

@ -12,15 +12,15 @@ pub trait OrgModeContext<'r> {
// todo
}
pub struct FailMatcherNode<'r> {
pub fail_matcher: ChainBehavior<'r>,
struct FailMatcherNode<'r> {
fail_matcher: ChainBehavior<'r>,
}
pub struct PreviousElementNode<'r> {
pub dummy: &'r str,
struct PreviousElementNode<'r> {
dummy: &'r str,
}
pub enum ChainBehavior<'r> {
enum ChainBehavior<'r> {
AndParent(Option<&'r Matcher>),
IgnoreParent(Option<&'r Matcher>),
}