Fixed some typos in the Android NDK documentation

RELNOTES: None.
PiperOrigin-RevId: 204173447
diff --git a/site/docs/android-ndk.md b/site/docs/android-ndk.md
index 4c3f74a..c59647a 100644
--- a/site/docs/android-ndk.md
+++ b/site/docs/android-ndk.md
@@ -19,7 +19,7 @@
 - [Configuring the target ABI](#configuring-the-target-abi)
 - [Selecting a C++ standard](#selecting-a-c-standard)
 - [How it works: introducing Android configuration transitions](#how-it-works-introducing-android-configuration-transitions)
-- [Building a `cc_library` for Android without using `android_binary`](#building-a-cclibrary-for-android-without-using-androidbinary)
+- [Building a `cc_library` for Android without using `android_binary`](#building-a-cc_library-for-android-without-using-android_binary)
 
 ## Overview
 
@@ -353,10 +353,10 @@
 common:android_<abi> --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
 ```
 
-Then, to build a `cc_library` for `x86_64` for example, run:
+Then, to build a `cc_library` for `x86` for example, run:
 
 ```shell
-bazel build //my/cc/jni:target --config=android_x86_64
+bazel build //my/cc/jni:target --config=android_x86
 ```
 
 In general, use this method for low-level targets (like `cc_library`) or when