Skip to content

Commit 11b215f

Browse files
authored
Fix typo
1 parent 7934cde commit 11b215f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/importing-postgres.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ALTER TABLE public.application_services_state OWNER TO synapse_user;
6060
It can be worked around by changing the username to `synapse`, for example by using `sed`:
6161
6262
```Shell
63-
$ sed -i "s/synapse_user/synapse/g" homeserver.sql"
63+
$ sed -i "s/synapse_user/synapse/g" homeserver.sql
6464
```
6565
6666
This uses sed to perform an 'in-place' (`-i`) replacement globally (`/g`), searching for `synapse user` and replacing with `synapse` (`s/synapse_user/synapse`). If your database username was different, change `synapse_user` to that username instead.

0 commit comments

Comments
 (0)