From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 20 Nov 2016 00:45:50 +0000 (+0100)
Subject: Fix faulty comments.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/static/%7B%7Bprefix%7D%7D/ledger2?a=commitdiff_plain;h=8d2ae126b20e8548a846b335367482410d533fd9;p=redo-blog

Fix faulty comments.
---

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"