Browse Source

docs: Update stand-alone scripts example code (#2655)

added closing ) to Logger.info
gspoon666 2 years ago
parent
commit
6163ba2bb1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      docs/docs/guides/developer-guide/stand-alone-scripts/index.md

+ 1 - 0
docs/docs/guides/developer-guide/stand-alone-scripts/index.md

@@ -50,6 +50,7 @@ async function getProductCount() {
             `There are ${totalItems} products`,
             '------------------------------',
         ].join('\n'),
+    )
 }
 ```