From e1f93205243f38ef06741c6d4a2c9ee14079795a Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sat, 26 Dec 2020 17:58:59 -0500 Subject: [PATCH] Capitalize "Wildbow" in book metadata Per Q2 on https://www.parahumans.net/f-a-q/ it seems to be capitalized like a name, not just at the beginning of sentences. --- lib/scaffold.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/scaffold.js b/lib/scaffold.js index ef834b9..538499d 100644 --- a/lib/scaffold.js +++ b/lib/scaffold.js @@ -4,7 +4,7 @@ const path = require("path"); const cpr = require("util").promisify(require("cpr")); const BOOK_PUBLISHER = "Domenic Denicola"; -const BOOK_AUTHOR = "wildbow"; +const BOOK_AUTHOR = "Wildbow"; const NCX_FILENAME = "toc.ncx";