From 0b908786e35eea00bbeda8ef629e65c6bdd50453 Mon Sep 17 00:00:00 2001
From: Erica Marigold <hi@devcomp.xyz>
Date: Fri, 21 Feb 2025 19:41:52 +0000
Subject: [PATCH] chore(lune): fix misspelling in markdown codegen for docs

---
 .lune/docsgen/markdown.luau | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.lune/docsgen/markdown.luau b/.lune/docsgen/markdown.luau
index c2b5727..673ec5a 100644
--- a/.lune/docsgen/markdown.luau
+++ b/.lune/docsgen/markdown.luau
@@ -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