diff options
7 files changed, 7 insertions, 7 deletions
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 4d98b3a6098..322a07c5739 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 fc4ec5e373f..3d8ba5c282a 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 47234809e5f..ec8a996549e 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 dcabd21a83e..15bf55d35a2 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 c1372726a35..d858337a949 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 90fa18b9857..c589208c099 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 96613fb9be4..45b00a2be82 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 |
