From 8a855e1f970586d3d13b5cc01c96f3b62e9153ec Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 8 Dec 2024 12:02:45 +0000 Subject: [PATCH] chore(lune): use uppercase for letter of tool choice in manifest desc --- .lune/build.luau | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.lune/build.luau b/.lune/build.luau index 2c903cf..bca778e 100644 --- a/.lune/build.luau +++ b/.lune/build.luau @@ -117,7 +117,9 @@ for tool, generators in lib.generators do local toolManifest: manifest.PesdeManifest = { name = `pesde/scripts_{toolChoice}`, version = toolMeta.version, - description = `Scripts for {toolChoice}-based Roblox projects`, + -- For the description, we capitalize the first letter of the tool name here + -- since it is a proper noun + description = `Scripts for {string.gsub(toolChoice, "^%l", string.upper)}-based Roblox projects.`, authors = { "daimond113 (https://www.daimond113.com/)", "Erica Marigold ",