[Swift-commit] r2362 - trunk/docs
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Tue Dec 9 13:13:02 CST 2008
Author: benc
Date: 2008-12-09 13:13:01 -0600 (Tue, 09 Dec 2008)
New Revision: 2362
Modified:
trunk/docs/tutorial.xml
Log:
extra \ needed in regexp tutorial (syntax changed several versions ago...)
Modified: trunk/docs/tutorial.xml
===================================================================
--- trunk/docs/tutorial.xml 2008-12-08 20:52:51 UTC (rev 2361)
+++ trunk/docs/tutorial.xml 2008-12-09 19:13:01 UTC (rev 2362)
@@ -540,7 +540,7 @@
countfile c <regexp_mapper;
source=@inputfile,
match="(.*)txt",
- transform="\1count"
+ transform="\\1count"
>;
</programlisting>
</para>
@@ -591,7 +591,7 @@
countfile c <regexp_mapper;
source=@f,
match="(.*)txt",
- transform="\1count">;
+ transform="\\1count">;
c = countwords(f);
}
</programlisting>
More information about the Swift-commit
mailing list