From 5a517d714afc424b9c534a750006e61d4cf8cff1 Mon Sep 17 00:00:00 2001 From: olayway Date: Mon, 12 Jun 2023 17:20:48 +0200 Subject: [PATCH] [blog/markdowndb-basics][xs]: typo fix --- site/content/blog/markdowndb-basics-tutorial-2023.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/blog/markdowndb-basics-tutorial-2023.md b/site/content/blog/markdowndb-basics-tutorial-2023.md index aca9044a..f88feddf 100644 --- a/site/content/blog/markdowndb-basics-tutorial-2023.md +++ b/site/content/blog/markdowndb-basics-tutorial-2023.md @@ -142,7 +142,7 @@ process.exit(0); Since we're using ES6 modules, we also need to add `"type": "module"` to our `package.json` file. -Before we run the above script, we need to make sure that the `dbPath` variable is pointing to our `markdown.db` file. If you want to store the database outside of your project folder, you can update the `dbPath` variable to point to the correct location. If you want to have it inside your project folder, you can copy it there, or simply re-run the `npx mddb` {'<'}path-to-markdown-folder{'>'}` command from within your project folder. +Before we run the above script, we need to make sure that the `dbPath` variable is pointing to our `markdown.db` file. If you want to store the database outside of your project folder, you can update the `dbPath` variable to point to the correct location. If you want to have it inside your project folder, you can copy it there, or simply re-run the `npx mddb ` command from within your project folder. Now, let's run the script: