Minor modification.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@151182 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/index.html b/www/index.html
index 867d6a4..cf08c73 100755
--- a/www/index.html
+++ b/www/index.html
@@ -72,7 +72,7 @@
 				<div class="postcontent">

 				   	<p>The LLDB debugger APIs are exposed as a C++ object oriented interface in a shared library. 

 					The <b>lldb</b> command line tool links to, and uses this public API. On Mac OS X the shared library

-					is exposed a framework name <b>LLDB.framework</b>, and unix systems expose it is <b>lldb.so</b>.

+					is exposed as a framework named <b>LLDB.framework</b>, and unix systems expose it as <b>lldb.so</b>.

 					The entire API is also then exposed through Python script bindings which allow the API to be used

 					within the LLDB embedded script interpreter, and also in any python script that loads the <b>lldb.py</b>

 					module in standard python script files. See the <a href="python-reference.html">Python Reference</a> page for more details on how