Skip to content

Commit

Permalink
Merge pull request #578 from meuter/master
Browse files Browse the repository at this point in the history
fix: use std::result::Result instead of Result in handlebar_helper!() macro
  • Loading branch information
sunng87 committed May 10, 2023
2 parents 27a9a9a + edcbc92 commit 91abf43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ macro_rules! handlebars_helper {
r: &'reg $crate::Handlebars<'reg>,
_: &'rc $crate::Context,
_: &mut $crate::RenderContext<'reg, 'rc>,
) -> Result<$crate::ScopedJson<'rc>, $crate::RenderError> {
) -> std::result::Result<$crate::ScopedJson<'rc>, $crate::RenderError> {
let mut param_idx = 0;

$(
Expand Down

0 comments on commit 91abf43

Please sign in to comment.