diff options
Diffstat (limited to 'azalea-brigadier/src')
| -rw-r--r-- | azalea-brigadier/src/command_dispatcher.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-brigadier/src/command_dispatcher.rs b/azalea-brigadier/src/command_dispatcher.rs index b27df6d1..d9a45132 100644 --- a/azalea-brigadier/src/command_dispatcher.rs +++ b/azalea-brigadier/src/command_dispatcher.rs @@ -55,7 +55,7 @@ impl<S> CommandDispatcher<S> { build } - pub fn parse(&self, command: StringReader, source: S) -> ParseResults<S> { + pub fn parse(&self, command: StringReader, source: S) -> ParseResults<'_, S> { let source = Arc::new(source); let context = CommandContextBuilder::new(self, source, self.root.clone(), command.cursor()); |
