1
1
Fork 0
mirror of https://github.com/0x5eal/luau-unzip.git synced 2025-04-05 07:00:53 +01:00

chore(lune): fix misspelling in markdown codegen for docs

This commit is contained in:
Erica Marigold 2025-02-21 19:41:52 +00:00
parent 25b87de27e
commit 0b908786e3
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw

View file

@ -53,7 +53,7 @@ local function writeFunction(
if private then
buf ..= `> [!IMPORTANT]\n`
buf ..= `> This is a private API. It may be exported publically, but try to avoid\n`
buf ..= `> This is a private API. It may be exported publicly, but try to avoid\n`
buf ..= `> using this API, since it can have breaking changes at any time without\n`
buf ..= `> warning.\n\n`
end
@ -149,7 +149,7 @@ local function writeMarkdown(path: string, items: { moonwave.Item })
buf ..= `### \`{type.name}\`\n`
if type.private then
buf ..= `> [!IMPORTANT]\n`
buf ..= `> This is a private type. It may be exported publically, but try to avoid\n`
buf ..= `> This is a private type. It may be exported publicly, but try to avoid\n`
buf ..= `> using it, since its definition can have a breaking change at any time\n`
buf ..= `> without warning.\n\n`
end