mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-06 23:30:55 +01:00
chore(lune): fix misspelling in markdown codegen for docs
This commit is contained in:
parent
25b87de27e
commit
0b908786e3
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ local function writeFunction(
|
||||||
|
|
||||||
if private then
|
if private then
|
||||||
buf ..= `> [!IMPORTANT]\n`
|
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 ..= `> using this API, since it can have breaking changes at any time without\n`
|
||||||
buf ..= `> warning.\n\n`
|
buf ..= `> warning.\n\n`
|
||||||
end
|
end
|
||||||
|
@ -149,7 +149,7 @@ local function writeMarkdown(path: string, items: { moonwave.Item })
|
||||||
buf ..= `### \`{type.name}\`\n`
|
buf ..= `### \`{type.name}\`\n`
|
||||||
if type.private then
|
if type.private then
|
||||||
buf ..= `> [!IMPORTANT]\n`
|
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 ..= `> using it, since its definition can have a breaking change at any time\n`
|
||||||
buf ..= `> without warning.\n\n`
|
buf ..= `> without warning.\n\n`
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue