From c7f12bf22e5bfe8888032f8c5e0451b9d3801d5f Mon Sep 17 00:00:00 2001 From: Eric Seppanen Date: Mon, 10 Jan 2022 11:13:36 -0800 Subject: [PATCH] remove backslash escaping inside code backticks Inside backticks, backslashes can't be used to escape square brackets. In this case, escaping isn't necessary anyway. --- content/2022-01-05-this-week-in-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/2022-01-05-this-week-in-rust.md b/content/2022-01-05-this-week-in-rust.md index 17ced2019..753c0ca1b 100644 --- a/content/2022-01-05-this-week-in-rust.md +++ b/content/2022-01-05-this-week-in-rust.md @@ -102,7 +102,7 @@ If you are a Rust project owner and are looking for contributors, please submit * [relax `priv-in-pub` lint on generic bounds and where clauses of trait impls](https://github.com/rust-lang/rust/pull/90586) * [perf: store liveness in interval sets for region inference](https://github.com/rust-lang/rust/pull/90637) * [add `try_reserve` and `try_reserve_exact` for `OsString`](https://github.com/rust-lang/rust/pull/92338) -* [support `\[x; n\]` expressions in `concat_bytes!`](https://github.com/rust-lang/rust/pull/92066) +* [support `[x; n]` expressions in `concat_bytes!`](https://github.com/rust-lang/rust/pull/92066) * [std-simd: impl `std::simd::StdFloat`](https://github.com/rust-lang/portable-simd/pull/219) * [rustdoc: use `ThinVec` for `GenericArgs` bindings](https://github.com/rust-lang/rust/pull/92395) * [clippy: extend `unused_io_amount` to cover async io](https://github.com/rust-lang/rust-clippy/pull/8179)