chore(lune): use uppercase for letter of tool choice in manifest desc

This commit is contained in:
Erica Marigold 2024-12-08 12:02:45 +00:00
parent dcfc331c3c
commit 9ecf980110
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -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 <contact@daimond113.com> (https://www.daimond113.com/)",
"Erica Marigold <hi@devcomp.xyz>",