diff --git a/validation/guideFolderChecks/frontmatterCheck.js b/validation/guideFolderChecks/frontmatterCheck.js index 8080625aff..fe2b27e1f3 100644 --- a/validation/guideFolderChecks/frontmatterCheck.js +++ b/validation/guideFolderChecks/frontmatterCheck.js @@ -6,7 +6,7 @@ const frontmatterCheck = (fullPath, isTranslation, fileContent) => { let errors = []; if (!frontmatter || _.isEmpty(frontmatter) || !frontmatter.title) { errors.push({ - msg: `Missing \`title key\` frontmatter.`, + msg: `Misplaced frontmatter or missing \`title key\` frontmatter.`, fullPath }); }