From 87536f9bccccd781233c2101da10d3974e08b3a9 Mon Sep 17 00:00:00 2001 From: Caleb Date: Thu, 26 Oct 2017 13:16:44 -0600 Subject: [PATCH] Typo fix (#744) --- src/formats/frontmatter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/formats/frontmatter.js b/src/formats/frontmatter.js index 43aadf46..251a99d9 100644 --- a/src/formats/frontmatter.js +++ b/src/formats/frontmatter.js @@ -33,7 +33,7 @@ function inferFrontmatterFormat(str) { case "{": return { language: "json", delimiters: ["{", "}"] }; default: - throw "Unrecgonized front-matter format."; + throw "Unrecognized front-matter format."; } }