diff --git a/site/pages/Docs/Plugin and Macros/Macros/Samples/Remove extra spaces/index.md b/site/pages/Docs/Plugin and Macros/Macros/Samples/Remove extra spaces/index.md index b04f2ddf6..69f30bc13 100644 --- a/site/pages/Docs/Plugin and Macros/Macros/Samples/Remove extra spaces/index.md +++ b/site/pages/Docs/Plugin and Macros/Macros/Samples/Remove extra spaces/index.md @@ -37,7 +37,7 @@ Removes extra spaces in text document. // Insert the cleanedText into the original paragraph structure const oParagraph = Api.CreateParagraph(); oParagraph.AddText(cleanedText); - oDocument.InsertContent([oParagraph], { "KeepTextOnly": true }); + oDocument.InsertContent([oParagraph], { "KeepTextOnly": true }); })(); ```