From 93ad60c5ca722e7d7295ffd1d72095c0f179127b 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 +- draft/2022-01-12-this-week-in-rust.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/2022-01-05-this-week-in-rust.md b/content/2022-01-05-this-week-in-rust.md index 188e55a74..91f6512cf 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) diff --git a/draft/2022-01-12-this-week-in-rust.md b/draft/2022-01-12-this-week-in-rust.md index aecf51e25..9270c95fb 100644 --- a/draft/2022-01-12-this-week-in-rust.md +++ b/draft/2022-01-12-this-week-in-rust.md @@ -59,7 +59,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)