d18d01a8b1
write_literal: Fix index of the remaining positional arguments - fixes https://github.com/rust-lang/rust-clippy/issues/10128 - `clippy --fix` replaces multiple warnings at once e.g.) ```rust writeln!(v, "{0} {1}", "hello", "world"); // before: `writeln!(v, "hello {1}", "world");` // now: `writeln!(v, "hello world");` ``` changelog: [`print_literal`], [`write_literal`]: Now handles positional argument properly