Browse Source

Fix remaning inline format

pull/3151/head
BlackDex 2 years ago
committed by Daniel García
parent
commit
80eb15d46a
No known key found for this signature in database GPG Key ID: FC8A7D14C3CD543A
  1. 2
      src/config.rs

2
src/config.rs

@ -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(())
}

Loading…
Cancel
Save