Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
scrabsha committed Apr 18, 2024
1 parent d19f698 commit 220b871
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion expandable-impl/src/grammar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{
};

use rust_grammar_dpdfa::RustParser;
pub use rust_grammar_dpdfa::Transition;
pub(crate) use rust_grammar_dpdfa::Transition;

use crate::{FragmentKind, Terminal};

Expand Down
5 changes: 3 additions & 2 deletions expandable-impl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(missing_debug_implementations)]
#![warn(
// missing_docs,
missing_docs,
clippy::cast_sign_loss,
clippy::cast_precision_loss,
clippy::cast_lossless,
Expand Down Expand Up @@ -82,7 +82,8 @@
use std::{marker::Copy, str::FromStr};

pub use error::{Error, MacroRuleNode};
pub use grammar::{DynamicState, TokenDescription};
use grammar::DynamicState;
pub use grammar::TokenDescription;

#[macro_use]
mod macros;
Expand Down

0 comments on commit 220b871

Please sign in to comment.