Standardize order of lifetimes for r and s.

This commit is contained in:
Tom Alexander
2022-12-18 03:30:28 -05:00
parent 2def475337
commit 50a67c65ef
5 changed files with 13 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
use super::parser_context::ContextElement;
use super::Context;
pub fn in_section<'s, 'r, 'x>(context: Context<'r, 's>, section_name: &'x str) -> bool {
pub fn in_section<'r, 's, 'x>(context: Context<'r, 's>, section_name: &'x str) -> bool {
for thing in context.iter() {
match thing.get_data() {
ContextElement::ExitMatcherNode(_) => {}