Skip to content

Commit 5dc22f8

Browse files
authored
Fix doctor target strings typo (#5012)
1 parent c8552ce commit 5dc22f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/cli/src/cli/doctor.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ impl Doctor {
147147

148148
// toolchains
149149
let mut has_wasm32_unknown_unknown = "❌";
150-
let mut has_aarch64_android_linux = "❌";
150+
let mut has_aarch64_linux_android = "❌";
151151
let mut has_i686_linux_android = "❌";
152152
let mut has_armv7_linux_androideabi = "❌";
153-
let mut has_x86_64_android_linux = "❌";
153+
let mut has_x86_64_linux_android = "❌";
154154
let mut has_x86_64_apple_ios = "❌";
155155
let mut has_aarch64_apple_ios = "❌";
156156
let mut has_aarch64_apple_ios_sim = "❌";
@@ -159,7 +159,7 @@ impl Doctor {
159159
has_wasm32_unknown_unknown = "✅";
160160
}
161161
if rustlib.join("aarch64-linux-android").exists() {
162-
has_aarch64_android_linux = "✅";
162+
has_aarch64_linux_android = "✅";
163163
}
164164
if rustlib.join("i686-linux-android").exists() {
165165
has_i686_linux_android = "✅";
@@ -168,7 +168,7 @@ impl Doctor {
168168
has_armv7_linux_androideabi = "✅";
169169
}
170170
if rustlib.join("x86_64-linux-android").exists() {
171-
has_x86_64_android_linux = "✅";
171+
has_x86_64_linux_android = "✅";
172172
}
173173
if rustlib.join("x86_64-apple-ios").exists() {
174174
has_x86_64_apple_ios = "✅";
@@ -248,10 +248,10 @@ impl Doctor {
248248
249249
{LINK_STYLE}Toolchains{LINK_STYLE:#}
250250
{HINT_STYLE}{has_wasm32_unknown_unknown}{HINT_STYLE:#} wasm32-unknown-unknown {HINT_STYLE}(web){HINT_STYLE:#}
251-
{HINT_STYLE}{has_aarch64_android_linux}{HINT_STYLE:#} aarch64-android-linux {HINT_STYLE}(android){HINT_STYLE:#}
251+
{HINT_STYLE}{has_aarch64_linux_android}{HINT_STYLE:#} aarch64-linux-android {HINT_STYLE}(android){HINT_STYLE:#}
252252
{HINT_STYLE}{has_i686_linux_android}{HINT_STYLE:#} i686-linux-android {HINT_STYLE}(android){HINT_STYLE:#}
253253
{HINT_STYLE}{has_armv7_linux_androideabi}{HINT_STYLE:#} armv7-linux-androideabi {HINT_STYLE}(android){HINT_STYLE:#}
254-
{HINT_STYLE}{has_x86_64_android_linux}{HINT_STYLE:#} x86_64-android-linux {HINT_STYLE}(android){HINT_STYLE:#}
254+
{HINT_STYLE}{has_x86_64_linux_android}{HINT_STYLE:#} x86_64-linux-android {HINT_STYLE}(android){HINT_STYLE:#}
255255
{HINT_STYLE}{has_x86_64_apple_ios}{HINT_STYLE:#} x86_64-apple-ios {HINT_STYLE}(iOS){HINT_STYLE:#}
256256
{HINT_STYLE}{has_aarch64_apple_ios}{HINT_STYLE:#} aarch64-apple-ios {HINT_STYLE}(iOS){HINT_STYLE:#}
257257
{HINT_STYLE}{has_aarch64_apple_ios_sim}{HINT_STYLE:#} aarch64-apple-ios-sim {HINT_STYLE}(iOS){HINT_STYLE:#}

0 commit comments

Comments
 (0)