Author: dsahlberg
Date: Wed Aug 11 05:59:54 2021
New Revision: 1892204
URL: http://svn.apache.org/viewvc?rev=1892204&view=rev
Log:
* subversion/mod_dav_svn/util.c:
Minor grammar correction in a few comments. No functional change.
Modified:
subversion/trunk/subversion/mod_dav_svn/util.c
Modified: subversion/trunk/subversion/mod_dav_svn/util.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/util.c?rev=1892204&r1=1892203&r2=1892204&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/util.c (original)
+++ subversion/trunk/subversion/mod_dav_svn/util.c Wed Aug 11 05:59:54 2021
@@ -525,7 +525,7 @@ dav_svn__brigade_write(apr_bucket_brigad
if (apr_err)
return svn_error_create(apr_err, 0, NULL);
/* Check for an aborted connection, since the brigade functions don't
- appear to be return useful errors when the connection is dropped. */
+ appear to return useful errors when the connection is dropped. */
if (output->r->connection->aborted)
return svn_error_create(SVN_ERR_APMOD_CONNECTION_ABORTED, 0, NULL);
return SVN_NO_ERROR;
@@ -543,7 +543,7 @@ dav_svn__brigade_puts(apr_bucket_brigade
if (apr_err)
return svn_error_create(apr_err, 0, NULL);
/* Check for an aborted connection, since the brigade functions don't
- appear to be return useful errors when the connection is dropped. */
+ appear to return useful errors when the connection is dropped. */
if (output->r->connection->aborted)
return svn_error_create(SVN_ERR_APMOD_CONNECTION_ABORTED, 0, NULL);
return SVN_NO_ERROR;
@@ -566,7 +566,7 @@ dav_svn__brigade_printf(apr_bucket_briga
if (apr_err)
return svn_error_create(apr_err, 0, NULL);
/* Check for an aborted connection, since the brigade functions don't
- appear to be return useful errors when the connection is dropped. */
+ appear to return useful errors when the connection is dropped. */
if (output->r->connection->aborted)
return svn_error_create(SVN_ERR_APMOD_CONNECTION_ABORTED, 0, NULL);
return SVN_NO_ERROR;