Author: billblough
Date: Tue Jul 31 01:11:56 2018
New Revision: 1837103
URL: http://svn.apache.org/viewvc?rev=1837103&view=rev
Log:
Fix spelling errors in comments/docs
Github PR #4
Thanks to Jimmy Casey for the patch.
Modified:
axis/axis2/c/core/trunk/axiom/NEWS
axis/axis2/c/core/trunk/axiom/test/om/test_om.cc
axis/axis2/c/core/trunk/test/core/transport/http/test_http_transport.cc
axis/axis2/c/core/trunk/util/NEWS
axis/axis2/c/core/trunk/util/src/uri.c
Modified: axis/axis2/c/core/trunk/axiom/NEWS
URL:
http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/axiom/NEWS?rev=1837103&r1=1837102&r2=1837103&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/axiom/NEWS (original)
+++ axis/axis2/c/core/trunk/axiom/NEWS Tue Jul 31 01:11:56 2018
@@ -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
Modified: axis/axis2/c/core/trunk/axiom/test/om/test_om.cc
URL:
http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/axiom/test/om/test_om.cc?rev=1837103&r1=1837102&r2=1837103&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/axiom/test/om/test_om.cc (original)
+++ axis/axis2/c/core/trunk/axiom/test/om/test_om.cc Tue Jul 31 01:11:56 2018
@@ -176,7 +176,7 @@ TEST_F(TestOM, test_om_build) {
}
- /** 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
Modified:
axis/axis2/c/core/trunk/test/core/transport/http/test_http_transport.cc
URL:
http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/test/core/transport/http/test_http_transport.cc?rev=1837103&r1=1837102&r2=1837103&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/test/core/transport/http/test_http_transport.cc
(original)
+++ axis/axis2/c/core/trunk/test/core/transport/http/test_http_transport.cc Tue
Jul 31 01:11:56 2018
@@ -204,7 +204,7 @@ TEST_F(TestHTTPTransport, test_http_clie
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);
Modified: axis/axis2/c/core/trunk/util/NEWS
URL:
http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/util/NEWS?rev=1837103&r1=1837102&r2=1837103&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/util/NEWS (original)
+++ axis/axis2/c/core/trunk/util/NEWS Tue Jul 31 01:11:56 2018
@@ -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
Modified: axis/axis2/c/core/trunk/util/src/uri.c
URL:
http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/util/src/uri.c?rev=1837103&r1=1837102&r2=1837103&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/util/src/uri.c (original)
+++ axis/axis2/c/core/trunk/util/src/uri.c Tue Jul 31 01:11:56 2018
@@ -417,7 +417,7 @@ axutil_uri_parse_string(
/* 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