From ecfff61aad84106ed1a2986f18b51992c1aa6e7b Mon Sep 17 00:00:00 2001
From: Alex Plate <aleksei.plate@jetbrains.com>
Date: Mon, 21 Oct 2024 16:17:49 +0300
Subject: [PATCH] Fix the issue in the replacement script

---
 .github/workflows/syncDoc.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/syncDoc.yml b/.github/workflows/syncDoc.yml
index eb8061e68..9b738e2a3 100644
--- a/.github/workflows/syncDoc.yml
+++ b/.github/workflows/syncDoc.yml
@@ -43,7 +43,7 @@ jobs:
           DIRECTORY="docs"
 
           # Find all files in the directory and perform the replacement
-          find $DIRECTORY -type f -exec sed -i 's/\.md)//g' {} +
+          find $DIRECTORY -type f -exec sed -i 's/\.md)/)/g' {} +
 
       - name: Commit changes
         uses: stefanzweifel/git-auto-commit-action@v4