This commit is contained in:
Henrique Dias
2015-10-16 20:03:59 +01:00
parent 09f4d90142
commit 109f27170a
3 changed files with 5 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ func parseFrontMatterOnlyFile(rawFile map[string]interface{}, filename string) (
case "yaml":
mark = rune('-')
default:
return []byte{}, http.StatusBadRequest, errors.New("can't define the frontmatter")
return []byte{}, http.StatusBadRequest, errors.New("Can't define the frontmatter.")
}
f, err := parser.InterfaceToFrontMatter(rawFile, mark)