Skip to content

Commit 2027453

Browse files
authored
chore: fix some lints in lalrpop output (#1173)
1 parent 2656ceb commit 2027453

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

cynic-parser/src/parser/executable.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,14 +1107,14 @@ mod __parse__ExecutableDocument {
11071107
}).collect()
11081108
}
11091109
struct __StateMachine<'input, '__1>
1110-
where
1110+
where
11111111
{
11121112
input: &'input str,
11131113
ast: &'__1 mut ExecutableAstWriter,
11141114
__phantom: core::marker::PhantomData<(&'input ())>,
11151115
}
11161116
impl<'input, '__1> __state_machine::ParserDefinition for __StateMachine<'input, '__1>
1117-
where
1117+
where
11181118
{
11191119
type Location = usize;
11201120
type Error = crate::parser::AdditionalErrors;

cynic-parser/src/parser/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// These are generated by LARLPOP
2+
#[expect(unused_braces)]
23
mod executable;
4+
#[expect(unused_braces)]
35
mod schema;
46

57
pub use executable::*;

0 commit comments

Comments
 (0)