From a467fd75031a46aab50af887bd556203ada13c0e Mon Sep 17 00:00:00 2001 From: Guilherme Rosseti <66320361+RezeScarlet@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:55:46 -0300 Subject: [PATCH] Fixed one missing comma in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd919db..9e58cac 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ In case you use Neovim, here's an example with Lua: ```lua vim.g.dbs = { - { name = 'dev', url = 'postgres://postgres:mypassword@localhost:5432/my-dev-db' } + { name = 'dev', url = 'postgres://postgres:mypassword@localhost:5432/my-dev-db' }, { name = 'staging', url = 'postgres://postgres:mypassword@localhost:5432/my-staging-db' }, { name = 'wp', url = 'mysql://root@localhost/wp_awesome' }, {