Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 773C61039B for ; Sat, 15 Feb 2014 01:02:45 +0000 (UTC) Received: (qmail 20989 invoked by uid 500); 15 Feb 2014 01:02:45 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 20953 invoked by uid 500); 15 Feb 2014 01:02:45 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 20946 invoked by uid 99); 15 Feb 2014 01:02:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Feb 2014 01:02:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Feb 2014 01:02:43 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id AE2D023888D7; Sat, 15 Feb 2014 01:02:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1568573 - /subversion/trunk/subversion/libsvn_wc/translate.c Date: Sat, 15 Feb 2014 01:02:23 -0000 To: commits@subversion.apache.org From: breser@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140215010223.AE2D023888D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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. */ } }