Run cargo fix.

This commit is contained in:
Tom Alexander
2023-10-29 22:31:29 -04:00
parent ff57242434
commit ada11816fb
107 changed files with 248 additions and 248 deletions

View File

@@ -1,6 +1,6 @@
use super::macros::intermediate;
use super::registry::register_footnote_definition;
use super::registry::Registry;
use super::IAstNode;
use crate::error::CustomError;
use crate::intermediate::RefRegistry;
@@ -27,7 +27,7 @@ pub(crate) struct IRealFootnoteDefinition {
impl IRealFootnoteDefinition {
pub(crate) async fn new<'orig, 'parse>(
registry: RefRegistry<'orig, 'parse>,
_registry: RefRegistry<'orig, 'parse>,
footnote_id: usize,
contents: Vec<IAstNode>,
) -> Result<IRealFootnoteDefinition, CustomError> {