diff --git a/README.md b/README.md
index 2d25a13..78be44d 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,10 @@ image_to_c
----------
Added a Python Based GUI for windows. Just run Image2cGUI.py.
-A command line tool for turning binary image files into C source code. The output is an array of unsigned chars and is sent to stdout. Included are comments detailing the image type, size and other details.
+
+A command line tool for turning binary image files into C source code. The output is an array of unsigned chars and is sent to stdout. Included are comments detailing the image type, size and other details.
+
+
Why did you write it?
My existing tool (bin_to_c) is similar in that it generates C arrays to compile file data directly into a project. I have used this tool to create many .H files to include with my projects, but the filename alone isn't enough to know the details of the image file contained in the data. Instead of manually adding this information to each file, I came up with the idea of combining my imageinfo tool with the bin_to_c tool to make something even more useful.