From 0c2fe7eb545143013e1d6f065e2644f3270a9a1c Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Mon, 26 Feb 2024 14:28:48 -0500 Subject: [PATCH] Comment clarification --- src/frontmatter/author.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontmatter/author.js b/src/frontmatter/author.js index ab5d78f..e6a9c4f 100644 --- a/src/frontmatter/author.js +++ b/src/frontmatter/author.js @@ -1,5 +1,5 @@ // get author, without decoding -// WordPress doesn't allow funky characters in author names anyway +// WordPress doesn't allow funky characters in usernames anyway module.exports = (post) => { return post.data.creator[0]; }