Rename nom context to parser context.

This commit is contained in:
Tom Alexander
2022-12-18 02:16:28 -05:00
parent 279b9dceb4
commit 6352f92ebc
4 changed files with 12 additions and 12 deletions

View File

@@ -1,10 +1,10 @@
mod combinator;
mod error;
mod list;
mod nom_context;
mod parser_context;
mod parser_with_context;
mod text;
mod text_element_parser;
mod token;
pub use text_element_parser::document;
type Context<'r, 's> = &'r nom_context::ContextTree<'r, 's>;
type Context<'r, 's> = &'r parser_context::ContextTree<'r, 's>;