Skip to content

Commit bf994e6

Browse files
committed
Merge pull request #578 from meuter/master
fix: use std::result::Result instead of Result in handlebar_helper!() macro
1 parent 1cbf4e3 commit bf994e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ macro_rules! handlebars_helper {
5454
r: &'reg $crate::Handlebars<'reg>,
5555
_: &'rc $crate::Context,
5656
_: &mut $crate::RenderContext<'reg, 'rc>,
57-
) -> Result<$crate::ScopedJson<'reg, 'rc>, $crate::RenderError> {
57+
) -> std::result::Result<$crate::ScopedJson<'reg, 'rc>, $crate::RenderError> {
5858
let mut param_idx = 0;
5959

6060
$(

0 commit comments

Comments
 (0)