Updated Cross compiling for ARM (markdown)
diff --git a/Cross-compiling-for-ARM.md b/Cross-compiling-for-ARM.md
index 096f4b0..15b437e 100644
--- a/Cross-compiling-for-ARM.md
+++ b/Cross-compiling-for-ARM.md
@@ -20,15 +20,15 @@
 
 Then run `gn args out.gn/arm.release' and make sure you have the following keys:
 
-    target_os = "android"
-    target_cpu = "arm"
+    target_os = "android"      # These lines need to be changed manually
+    target_cpu = "arm"         # as v8gen.py assumes a simulator build.
     v8_target_cpu = "arm"
     is_component_build = false
 
 The keys should be the same for debug builds. If you are building for an arm64 device like the Pixel C, which supports 32bit and 64bit binaries, the keys should look like this:
 
-    target_os = "android"
-    target_cpu = "arm64"
+    target_os = "android"      # These lines need to be changed manually
+    target_cpu = "arm64"       # as v8gen.py assumes a simulator build.
     v8_target_cpu = "arm64"
     is_component_build = false