You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/08/28 17:16:50 UTC

svn commit: r990381 - /subversion/trunk/subversion/libsvn_client/diff.c

Author: stsp
Date: Sat Aug 28 15:16:33 2010
New Revision: 990381

URL: http://svn.apache.org/viewvc?rev=990381&view=rev
Log:
* subversion/libsvn_client/diff.c
  (adjust_relative_to_repos_root): Tidy up comments.

Modified:
    subversion/trunk/subversion/libsvn_client/diff.c

Modified: subversion/trunk/subversion/libsvn_client/diff.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/diff.c?rev=990381&r1=990380&r2=990381&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/diff.c (original)
+++ subversion/trunk/subversion/libsvn_client/diff.c Sat Aug 28 15:16:33 2010
@@ -220,7 +220,7 @@ adjust_relative_to_repos_root(const char
       return SVN_NO_ERROR;
     }
 
-  /* Now deal with the repos-repos and repos->wc diff cases.
+  /* Now deal with the repos-repos and repos-wc diff cases.
    * We need to make PATH appear as a child of ORIG_TARGET.
    * ORIG_TARGET is either a URL or a path to a working copy. First,
    * find out what ORIG_TARGET looks like relative to the repository root.*/
@@ -239,7 +239,7 @@ adjust_relative_to_repos_root(const char
 
   /* PATH is either a child of the working copy involved in the diff (in
    * the repos-wc diff case), or it's a relative path we can readily use
-   * (in either the repos-repos or the repos-wc diff cases). */
+   * (in either of the repos-repos and repos-wc diff cases). */
   child_relpath = NULL;
   if (wc_root_abspath)
     {