python: cleanup
diff --git a/bindings/python/BUILDING.txt b/bindings/python/BUILDING.txt
index 13938ad..e527b15 100644
--- a/bindings/python/BUILDING.txt
+++ b/bindings/python/BUILDING.txt
@@ -2,11 +2,11 @@
    from source. If you want to install it from a PyPi package (recommended if
    you are on Windows), see README.txt.
 
-1. To install capstone and the python bindings on *nix, run the command below:
+1. To install Capstone and the Python bindings on *nix, run the command below:
 
 		$ sudo make install
 
-   To install capstone for python 3, run the command below:
+   To install Capstone for Python 3, run the command below:
    (Note: this requires python3 installed in your machine)
 
 		$ sudo make install3
@@ -17,10 +17,10 @@
 
 		$ sudo make install_cython
 
-	Note that this requires cython installed first. To install cython, see
+	Note that this requires Cython installed first. To install Cython, see
 	below.
 	
-3. To install cython, you have to ensure that the header files
+3. To install Cython, you have to ensure that the header files
    and the static library for Python are installed beforehand.
 
 	E.g. on Ubuntu, do:
@@ -28,24 +28,24 @@
 		$ sudo apt-get install python-dev
 
 	Depending on if you already have pip or easy_install installed, install
-	cython with either:
+	Cython with either:
 
 		$ sudo pip install cython
 	or:
 		$ sudo easy_install cython
 
 	NOTE: Depending on your distribution you might also be able to
-	      install the required cython version using your repository.
+	      install the required Cython version using your repository.
 
 	E.g. on Ubuntu, do:
 	
 		$ sudo apt-get install cython
 
-	However, our cython-based binding requires cython version 0.19 or newer,
+	However, our cython-based binding requires Cython version 0.19 or newer,
 	but sometimes distributions only provide older version. Make sure to
 	verify the current installed version before going into section 2 above.
 	
-	E.g, on Ubuntu, you can verify the current cython version with:
+	E.g, on Ubuntu, you can verify the current Cython version with:
 
 		$ apt-cache policy cython