From 422dd746f9350b031e5ae2a0ba010ca7d263c53a Mon Sep 17 00:00:00 2001 From: Nick McCurdy Date: Tue, 20 Apr 2021 16:50:16 -0400 Subject: [PATCH] doc: fix syntax errors in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92e79ce..7b279e2 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ A utility in the pursuit of building megafiles. It will retrun a deduped array o ```js const { dedupeLocalEventsFilesInDirectory } = require('encites') -const directory = './data/` +const directory = './data/' // get all data, deduped, from your data directory const dedupedData = await dedupeLocalEventsFilesInDirectory(`${directory}`) @@ -123,7 +123,7 @@ Takes an Events Array, spits out pretty markdown. * `title` (string, required): A string to be used as the title of your Markdown document. ```js -const { filterPublicGitHubEvents, getMarkdownFromEvents getPublicGitHubEvents } = require('encites') +const { filterPublicGitHubEvents, getMarkdownFromEvents, getPublicGitHubEvents } = require('encites') // the users we're getting data for const users = ['bnb']