diff --git a/src/doc/rustc/src/platform-support/arm64e-apple-darwin.md b/src/doc/rustc/src/platform-support/arm64e-apple-darwin.md index 4d98b3a60986b..322a07c573970 100644 --- a/src/doc/rustc/src/platform-support/arm64e-apple-darwin.md +++ b/src/doc/rustc/src/platform-support/arm64e-apple-darwin.md @@ -20,7 +20,7 @@ You can build Rust with support for the targets by adding it to the `target` lis ```toml [build] -target = [ "arm64e-apple-darwin" ] +target = ["arm64e-apple-darwin"] ``` ## Building Rust programs diff --git a/src/doc/rustc/src/platform-support/arm64e-apple-ios.md b/src/doc/rustc/src/platform-support/arm64e-apple-ios.md index fc4ec5e373fb0..3d8ba5c282a60 100644 --- a/src/doc/rustc/src/platform-support/arm64e-apple-ios.md +++ b/src/doc/rustc/src/platform-support/arm64e-apple-ios.md @@ -18,7 +18,7 @@ You can build Rust with support for the targets by adding it to the `target` lis ```toml [build] -target = [ "arm64e-apple-ios" ] +target = ["arm64e-apple-ios"] ``` ## Building Rust programs diff --git a/src/doc/rustc/src/platform-support/arm64e-apple-tvos.md b/src/doc/rustc/src/platform-support/arm64e-apple-tvos.md index 47234809e5f19..ec8a996549e11 100644 --- a/src/doc/rustc/src/platform-support/arm64e-apple-tvos.md +++ b/src/doc/rustc/src/platform-support/arm64e-apple-tvos.md @@ -19,7 +19,7 @@ You can build Rust with support for the targets by adding it to the `target` lis ```toml [build] -target = [ "arm64e-apple-tvos" ] +target = ["arm64e-apple-tvos"] ``` ## Building Rust programs diff --git a/src/doc/rustc/src/platform-support/arm64ec-pc-windows-msvc.md b/src/doc/rustc/src/platform-support/arm64ec-pc-windows-msvc.md index dcabd21a83ebd..15bf55d35a26b 100644 --- a/src/doc/rustc/src/platform-support/arm64ec-pc-windows-msvc.md +++ b/src/doc/rustc/src/platform-support/arm64ec-pc-windows-msvc.md @@ -60,7 +60,7 @@ list in `config.toml`: ```toml [build] -target = [ "arm64ec-pc-windows-msvc" ] +target = ["arm64ec-pc-windows-msvc"] ``` ## Building Rust programs diff --git a/src/doc/rustc/src/platform-support/hexagon-unknown-linux-musl.md b/src/doc/rustc/src/platform-support/hexagon-unknown-linux-musl.md index c1372726a35f4..d858337a9499f 100644 --- a/src/doc/rustc/src/platform-support/hexagon-unknown-linux-musl.md +++ b/src/doc/rustc/src/platform-support/hexagon-unknown-linux-musl.md @@ -48,7 +48,7 @@ target list in `config.toml`, a sample configuration is shown below. ```toml [build] -target = [ "hexagon-unknown-linux-musl"] +target = ["hexagon-unknown-linux-musl"] [target.hexagon-unknown-linux-musl] diff --git a/src/doc/rustc/src/platform-support/unikraft-linux-musl.md b/src/doc/rustc/src/platform-support/unikraft-linux-musl.md index 90fa18b985783..c589208c099b9 100644 --- a/src/doc/rustc/src/platform-support/unikraft-linux-musl.md +++ b/src/doc/rustc/src/platform-support/unikraft-linux-musl.md @@ -39,7 +39,7 @@ You can build Rust with support for the targets by adding it to the `target` lis ```toml [build] build-stage = 1 -target = [ "x86_64-unikraft-linux-musl" ] +target = ["x86_64-unikraft-linux-musl"] ``` ## Building Rust programs diff --git a/src/doc/rustc/src/platform-support/win7-windows-msvc.md b/src/doc/rustc/src/platform-support/win7-windows-msvc.md index 96613fb9be4cc..45b00a2be8294 100644 --- a/src/doc/rustc/src/platform-support/win7-windows-msvc.md +++ b/src/doc/rustc/src/platform-support/win7-windows-msvc.md @@ -25,7 +25,7 @@ You can build Rust with support for the targets by adding it to the target list ```toml [build] build-stage = 1 -target = [ "x86_64-win7-windows-msvc" ] +target = ["x86_64-win7-windows-msvc"] ``` ## Building Rust programs diff --git a/src/doc/rustc/src/target-tier-policy.md b/src/doc/rustc/src/target-tier-policy.md index e9cf2a0d1ae5b..bdcf2c0b07efc 100644 --- a/src/doc/rustc/src/target-tier-policy.md +++ b/src/doc/rustc/src/target-tier-policy.md @@ -119,7 +119,7 @@ To propose addition of a new target, open a pull request on [`rust-lang/rust`]: Link to the created description page. - Ensure the pull request is assigned to a member of the [Rust compiler team][rust_compiler_team] by commenting: ```text - r? compiler-team + r? compiler ``` [tier3example]: https://github.com/rust-lang/rust/pull/94872