From: Justin Wind Date: Sat, 21 Jan 2023 19:25:03 +0000 (-0800) Subject: fix doc typo X-Git-Tag: v1.3.11^2~4 X-Git-Url: http://git.squeep.com/?p=websub-hub;a=commitdiff_plain;h=f3e42bc1c361f932ccbc0e40d3692cdbb77ee437 fix doc typo --- diff --git a/README.md b/README.md index 17b4733..41f3e83 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ One way of deploying this server is behind nginx, with the pm2 package to manage - Prepare PostgreSQL with a user and database, using e.g. ```psql```. >
   > CREATE ROLE websubhub WITH CREATEDB LOGIN PASSWORD 'mypassword';
-  > GRANT websubhub TO postgres
+  > GRANT websubhub TO postgres;
   > CREATE DATABASE websubhub OWNER=websubhub;
   > GRANT ALL PRIVILEGES ON DATABASE websubhub TO websubhub;
   > \c websubhub