Skip to content

Commit

Permalink
fix: remove unneeded mut
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Jul 19, 2023
1 parent 229f28a commit ab930e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ pub(crate) fn do_escape(r: &Registry<'_>, rc: &RenderContext<'_, '_>, content: S
#[inline]
fn indent_aware_write(
v: &str,
rc: &mut RenderContext<'_, '_>,
rc: &RenderContext<'_, '_>,
out: &mut dyn Output,
) -> Result<(), RenderError> {
if let Some(indent) = rc.get_indent_string() {
Expand Down

0 comments on commit ab930e8

Please sign in to comment.