From 7fff80bcfd1226b05b440fa34e12efc0a0c14733 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Thu, 9 Jul 2020 12:19:26 -0400 Subject: [PATCH] Correct spelling of GitHub --- docsSource/compileMD.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsSource/compileMD.js b/docsSource/compileMD.js index e21801d..16a02f0 100644 --- a/docsSource/compileMD.js +++ b/docsSource/compileMD.js @@ -24,7 +24,7 @@ function compileMD(dir = 'sections') { const files = fs.readdirSync(directory).sort(); const sectionTemplate = (file, content) => { - const message = 'Edit this on Github'; + const message = 'Edit this on GitHub'; const fileName = convertFileNameToId(file); const editURL = `https://github.com/daneden/animate.css/blob/master/docsSource/sections/${file}`; const parsedContent = md.render(content);