From 8d2ae126b20e8548a846b335367482410d533fd9 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 20 Nov 2016 01:45:50 +0100
Subject: [PATCH] Fix faulty comments.

---
 processor/feed.xml.do   | 2 +-
 processor/index.html.do | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/processor/feed.xml.do b/processor/feed.xml.do
index 4f67b27..1e492eb 100644
--- a/processor/feed.xml.do
+++ b/processor/feed.xml.do
@@ -36,7 +36,7 @@ printf "<id>urn:uuid:%s</id>\n" "$uuid"
 # Iterate through most recent entries (go by lastmod date of source files) to
 # build feed head "updated" element, and individual entries.
 # FIXME: This ls parsing is a bad way to loop through the sorted files. Besides,
-# $('\0') is a bashism.
+# $'\0' is a bashism.
 first_run=0
 files=`ls -1t *.rst *.md | head -10 | tr '\n' $'\0'`
 oldIFS="$IFS"
diff --git a/processor/index.html.do b/processor/index.html.do
index e436a4a..1bd4dd1 100644
--- a/processor/index.html.do
+++ b/processor/index.html.do
@@ -17,7 +17,7 @@ printf "<h1>%s</h1>\n<ul>\n" "$blog_title"
 
 # Iterate through entries sorted by lastmod of their source files, write entry.
 # FIXME: This ls parsing is a bad way to loop through the sorted files. Besides,
-# $('\0') is a bashism.
+# $'\0' is a bashism.
 first_run=0
 files=`ls -1t *.rst *.md | tr '\n' $'\0'`
 oldIFS="$IFS"
-- 
2.30.2