Skip to content

Commit

Permalink
jaq-core/loader: be specific about input parameter for reader
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescreen303 committed Jan 1, 2025
1 parent 63513e5 commit 6feec8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaq-core/src/load/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ impl<S, R> Loader<S, PathBuf, R> {
}
}

impl<'s, P: Clone + Eq, R: FnMut(Import<&str, P>) -> ReadResult<P>> Loader<&'s str, P, R> {
impl<'s, P: Clone + Eq, R: FnMut(Import<&'s str, P>) -> ReadResult<P>> Loader<&'s str, P, R> {
/// Load a set of modules, starting from a given file.
pub fn load(
mut self,
Expand Down

0 comments on commit 6feec8a

Please sign in to comment.