# HG changeset patch
# User František Kučera <franta-hg@frantovo.cz>
# Date 1545078278 -3600
# Node ID bbc9c89122f122461bbee107c11a55ee4908ba30
# Parent  c7e88edaedc5a24d0b2aeb888e2c7af21e46c533
small fixes

diff -r c7e88edaedc5 -r bbc9c89122f1 relpipe-data/examples.xml
--- a/relpipe-data/examples.xml	Sun Dec 16 13:42:25 2018 +0100
+++ b/relpipe-data/examples.xml	Mon Dec 17 21:24:38 2018 +0100
@@ -375,8 +375,8 @@
 		<h2>Writing an output filter in Bash</h2>
 		
 		<p>
-			In previous example we created and output filter in Perl. 
-			We converted a relation to values separated by <code>\0</code> and then passed it through <code>xargs</code> to a perl <em>one-liner</em> (or <em>multi-liner</em> in this case).
+			In previous example we created an output filter in Perl. 
+			We converted a relation to values separated by <code>\0</code> and then passed it through <code>xargs</code> to a perl <em>one-liner</em> (or a <em>multi-liner</em> in this case).
 			But we can write such output filter in pure Bash without <code>xargs</code> and <code>perl</code>.
 			Of course, it is still limited to a single relation (or it can process multiple relations of same type and do something like implicit <code>UNION ALL</code>).
 		</p>