You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2014/02/15 02:02:23 UTC

svn commit: r1568573 - /subversion/trunk/subversion/libsvn_wc/translate.c

Author: breser
Date: Sat Feb 15 01:02:23 2014
New Revision: 1568573

URL: http://svn.apache.org/r1568573
Log:
Followup to r1568571, fix grammar in comments.

* subversion/libsvn_wc/translate.c
  (svn_wc__internal_translated_streams): Remove extra if in comments.

Modified:
    subversion/trunk/subversion/libsvn_wc/translate.c

Modified: subversion/trunk/subversion/libsvn_wc/translate.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/translate.c?rev=1568573&r1=1568572&r2=1568573&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/translate.c (original)
+++ subversion/trunk/subversion/libsvn_wc/translate.c Sat Feb 15 01:02:23 2014
@@ -119,7 +119,7 @@ svn_wc__internal_translated_stream(svn_s
                                                 result_pool);
 
           /* streams enforce our contract that TO_NF streams are read-only
-           * by returning if SVN_ERR_STREAM_NOT_SUPPORTED when trying to
+           * by returning SVN_ERR_STREAM_NOT_SUPPORTED when trying to
            * write to them. */
         }
       else
@@ -128,7 +128,7 @@ svn_wc__internal_translated_stream(svn_s
                                                 keywords, TRUE, result_pool);
 
           /* streams enforce our contract that FROM_NF streams are write-only
-           * by returning if SVN_ERR_STREAM_NOT_SUPPORTED when trying to
+           * by returning SVN_ERR_STREAM_NOT_SUPPORTED when trying to
            * read them. */
         }
     }