You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/05/05 18:25:25 UTC

svn commit: r1479350 - /subversion/trunk/tools/dev/remove-trailing-whitespace.sh

Author: danielsh
Date: Sun May  5 16:25:24 2013
New Revision: 1479350

URL: http://svn.apache.org/r1479350
Log:
* tools/dev/remove-trailing-whitespace.sh: Fix typo in comment.

Modified:
    subversion/trunk/tools/dev/remove-trailing-whitespace.sh

Modified: subversion/trunk/tools/dev/remove-trailing-whitespace.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/remove-trailing-whitespace.sh?rev=1479350&r1=1479349&r2=1479350&view=diff
==============================================================================
--- subversion/trunk/tools/dev/remove-trailing-whitespace.sh (original)
+++ subversion/trunk/tools/dev/remove-trailing-whitespace.sh Sun May  5 16:25:24 2013
@@ -20,5 +20,5 @@
  for ext in c h cpp java py pl rb hpp cmd bat; do
    find . -name "*.$ext" -exec \
      perl -pi -e 's/[ \t]*$//' {} + ;
-     # don't use \t to not strip ^L pagebreaks
+     # don't use \s to not strip ^L pagebreaks
  done