Index: Tools/Scripts/svn-apply |
diff --git a/Tools/Scripts/svn-apply b/Tools/Scripts/svn-apply |
index fb52a9b072e7a7e69f1a8cb57c345d5544770729..0d3e7c476a02a66fb251a66cf8a4e1a2bcd3baa7 100755 |
--- a/Tools/Scripts/svn-apply |
+++ b/Tools/Scripts/svn-apply |
@@ -12,7 +12,7 @@ |
# notice, this list of conditions and the following disclaimer. |
# 2. Redistributions in binary form must reproduce the above copyright |
# notice, this list of conditions and the following disclaimer in the |
-# documentation and/or other materials provided with the distribution. |
+# documentation and/or other materials provided with the distribution. |
# 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of |
# its contributors may be used to endorse or promote products derived |
# from this software without specific prior written permission. |
@@ -467,7 +467,7 @@ sub scmRemove($) |
# Git removes a directory if it becomes empty when the last file it contains is |
# removed by `git rm`. In svn-apply this can happen when a directory is being |
# removed in a patch, and all of the files inside of the directory are removed |
- # before attemping to remove the directory itself. In this case, Git will have |
+ # before attemping to remove the directory itself. In this case, Git will have |
# already deleted the directory and `git rm` would exit with an error claiming |
# there was no file. The --ignore-unmatch switch gracefully handles this case. |
system("git", "rm", "--force", "--ignore-unmatch", $path) == 0 or die "Failed to git rm --force --ignore-unmatch $path."; |