Skip to content

Commit

Permalink
Fix remaning inline format
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDex committed Jan 9, 2023
1 parent 367e1ce commit 92dc48b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,7 @@ fn to_json<'reg, 'rc>(
) -> HelperResult {
let param = h.param(0).ok_or_else(|| RenderError::new("Expected 1 parameter for \"to_json\""))?.value();
let json = serde_json::to_string(param)
.map_err(|e| RenderError::new(format!("Can't serialize parameter to JSON: {}", e)))?;
.map_err(|e| RenderError::new(format!("Can't serialize parameter to JSON: {e}")))?;
out.write(&json)?;
Ok(())
}

0 comments on commit 92dc48b

Please sign in to comment.