From 4d08084250806b340b976b4bf59ba5d87587603c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Thu, 26 Jun 2025 23:59:43 +0200 Subject: [PATCH] fix: typo "atachment" in publishing to confluence command Fixes #12990 --- src/publish/confluence/confluence.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/publish/confluence/confluence.ts b/src/publish/confluence/confluence.ts index 9708a1fc711..99233cac9b8 100644 --- a/src/publish/confluence/confluence.ts +++ b/src/publish/confluence/confluence.ts @@ -856,7 +856,7 @@ async function publish( const [publishResult, hasAttachments] = await publishDocument(); if (hasAttachments) { info( - "\nNote: The published content includes attachments or images. You may see a placeholder for a few moments while Confluence processes the image or atachment.\n", + "\nNote: The published content includes attachments or images. You may see a placeholder for a few moments while Confluence processes the image or attachment.\n", ); } return publishResult; @@ -864,7 +864,7 @@ async function publish( const [publishResult, hasAttachments] = await publishSite(); if (hasAttachments) { info( - "\nNote: The published content includes attachments or images. You may see a placeholder for a few moments while Confluence processes the image or atachment.\n", + "\nNote: The published content includes attachments or images. You may see a placeholder for a few moments while Confluence processes the image or attachment.\n", ); } return publishResult;