Fix example to match text
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index eb2a69b..df5ccb6 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -2156,7 +2156,7 @@
   files, which have names ending with '~'::
 
       shutil.copytree('Doc/library', '/tmp/library', 
-                      ignore=shutil.ignore_patterns('*~'))
+                      ignore=shutil.ignore_patterns('*~', '.svn'))
 
   (Contributed by Tarek Ziadé; :issue:`2663`.)