# HG changeset patch
# User František Kučera <franta-hg@frantovo.cz>
# Date 1545391157 -3600
# Node ID 6402cd6921c5989106fefc8e8f1bd21e1be867cc
# Parent  a02847f786d99527d5bb98f30edd25bb067791f5
examples: small sed fix: .* → .+

diff -r a02847f786d9 -r 6402cd6921c5 relpipe-data/examples.xml
--- a/relpipe-data/examples.xml	Fri Dec 21 12:18:43 2018 +0100
+++ b/relpipe-data/examples.xml	Fri Dec 21 12:19:17 2018 +0100
@@ -455,7 +455,7 @@
 			For example we can put zeroes in both <code>dump</code> and <code>pass</code> attributes:
 		</p>
 		
-		<m:pre jazyk="bash"><![CDATA[relpipe-in-fstab | relpipe-tr-sed 'fstab' 'dump|pass' '.*' '0' | relpipe-out-fstab]]></m:pre>
+		<m:pre jazyk="bash"><![CDATA[relpipe-in-fstab | relpipe-tr-sed 'fstab' 'dump|pass' '.+' '0' | relpipe-out-fstab]]></m:pre>
 		
 		<p>
 			n.b. the data types must be respected, we can not e.g. put <code>abc</code> in the <code>pass</code> attribute because it is declared as <code>integer</code>.