Fix spelling errors in comments/docs

Github PR #4

Thanks to Jimmy Casey for the patch.


diff --git a/axiom/NEWS b/axiom/NEWS
index 268572f..3c04212 100644
--- a/axiom/NEWS
+++ b/axiom/NEWS
@@ -1,4 +1,4 @@
-Axiom module seperated from Axis2/C
+Axiom module separated from Axis2/C
 ======================================
 Initially this was inside Axis2/C code base as axiom directory. As the
 project expands it's moved to the top level with the view of making it a
diff --git a/axiom/test/om/test_om.cc b/axiom/test/om/test_om.cc
index 20797a0..a8f060d 100644
--- a/axiom/test/om/test_om.cc
+++ b/axiom/test/om/test_om.cc
@@ -176,7 +176,7 @@
 
     }
 
-    /** build the document continuously untill all the xml file is built in to a om model */
+    /** build the document continuously until all the xml file is built in to a om model */
 
     node2 = axiom_document_build_next(document, m_env);
     do
diff --git a/test/core/transport/http/test_http_transport.cc b/test/core/transport/http/test_http_transport.cc
index bf0f60d..b95d99b 100644
--- a/test/core/transport/http/test_http_transport.cc
+++ b/test/core/transport/http/test_http_transport.cc
@@ -204,7 +204,7 @@
     ASSERT_EQ(status, 200);
     if (status != 200)
     {
-        printf("Test FAILED ......... Can't recieve. Status: %d\n", status);
+        printf("Test FAILED ......... Can't receive. Status: %d\n", status);
         return;
     }
     response = axis2_http_client_get_response(client, m_env);
diff --git a/util/NEWS b/util/NEWS
index 6466fb3..9169b69 100644
--- a/util/NEWS
+++ b/util/NEWS
@@ -1,4 +1,4 @@
-Util module seperated from Axis2/C
+Util module separated from Axis2/C
 ======================================
 Initially this was inside Axis2/C code base as util directory. As the
 project expands it's moved to the top level with the view of making it a
diff --git a/util/src/uri.c b/util/src/uri.c
index d9e1bd6..b5bdaae 100644
--- a/util/src/uri.c
+++ b/util/src/uri.c
@@ -417,7 +417,7 @@
 
     /* If there's a username:password@host:port, the @ we want is the last @...
      * too bad there's no memrchr()... For the C purists, note that hostinfo
-     * is definately not the first character of the original uri so therefore
+     * is definitely not the first character of the original uri so therefore
      * &hostinfo[-1] < &hostinfo[0] ... and this loop is valid C.
      */
     do