diff --git a/docs/COMPILE-NIX.md b/docs/COMPILE-NIX.md
index de4e5829a7b046e314b8b5975d9b57c942c89fd4..498b6471ab8a830d05ecb9c8039198fb19841019 100644
--- a/docs/COMPILE-NIX.md
+++ b/docs/COMPILE-NIX.md
@@ -2,7 +2,7 @@ This documentation explains how to build & install Keystone on all kind of nix O
 For Windows, see [COMPILE-WINDOWS.md](COMPILE-WINDOWS.md)
 
 
-1. Dependency
+Dependency
 
 CMake is required to build keystone.
 
@@ -15,7 +15,7 @@ CMake is required to build keystone.
         $ sudo apt-get install cmake
 
 
-2. From the root directory of Keystone source, compile as a dynamic library
+1. From the root directory of Keystone source, compile as a dynamic library
    with the following commands.
 
         $ mkdir build
@@ -44,7 +44,7 @@ CMake is required to build keystone.
         $ make -j8
 
 
-3. Right after building, install Keystone.
+2. Right after building, install Keystone.
 
         $ sudo make install
 
@@ -59,14 +59,14 @@ CMake is required to build keystone.
    (The source of "kstool" is in the directory "kstool/kstool")
 
 
-4. Test Keystone with "kstool" like below.
+3. Test Keystone with "kstool" like below.
 
         $ kstool x32 "add eax, ebx"
 
    Run "kstool" without any option to find out how to use this handy tool.
 
 
-5. Learn more on how to code your own tools with our samples.
+4. Learn more on how to code your own tools with our samples.
 
    For C sample code, see code in directory samples/
 
diff --git a/docs/COMPILE-WINDOWS.md b/docs/COMPILE-WINDOWS.md
index f772046011210e9f061924608de65f8ddc2a9982..ec7e88c64a802cac43f49ed4cd1628a5c65e00f5 100644
--- a/docs/COMPILE-WINDOWS.md
+++ b/docs/COMPILE-WINDOWS.md
@@ -2,7 +2,7 @@ This documentation explains how to build Keystone on Windows.
 For *nix OS, see [COMPILE-NIX.md](COMPILE-NIX.md)
 
 
-1. Dependency
+Dependency
 
 CMake is required as dependency.
 Download & install cmake from http://www.cmake.org
@@ -11,7 +11,7 @@ Microsoft Visual Studio is required for compiling. Download & install it from
 https://www.visualstudio.com
 
 
-2. Open the Visual Studio Command Promplt, and from the root directory
+1. Open the Visual Studio Command Promplt, and from the root directory
   of Keystone source, do:
 
         $ mkdir build
@@ -47,14 +47,14 @@ https://www.visualstudio.com
   (Find source of "kstool" in directory "kstool/kstool")
 
 
-3. Test Keystone with "kstool" like below.
+2. Test Keystone with "kstool" like below.
 
         $ kstool.exe x32 "add eax, ebx"
 
   Run "kstool.exe" without any option to find out how to use this handy tool.
 
 
-4. Learn more on how to code your own tools with our samples.
+3. Learn more on how to code your own tools with our samples.
 
    For C sample code, see code in directory samples/