home · contact · privacy
Fix faulty comments.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 20 Nov 2016 00:45:50 +0000 (01:45 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 20 Nov 2016 00:45:50 +0000 (01:45 +0100)
processor/feed.xml.do
processor/index.html.do

index 4f67b271657b210680b3f65a5951ca25b4a67c94..1e492ebc47f8b4e7f1f2eb25e8598c0d985fd5ab 100644 (file)
@@ -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"
index e436a4a67beaeb577738cf3d3e5c0ca1366516f3..1bd4dd13115f32556b77e065b223e8e488eb584e 100644 (file)
@@ -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"