1
0
mirror of https://github.com/alexedwards/scs.git synced 2025-07-11 00:50:14 +02:00

Fix typos in documentation

This commit is contained in:
gandaldf
2022-02-09 11:27:58 +01:00
parent b95d685652
commit 6c6ff2c7bb
8 changed files with 15 additions and 12 deletions

View File

@ -86,7 +86,7 @@ However, there may be occasions when your use of a session store instance is tra
```go
func TestExample(t *testing.T) {
db, err := sql.Open("postgres", "postgres://user:pass@localhost/db")
db, err := sql.Open("postgres", "postgres://username:password@host/dbname")
if err != nil {
t.Fatal(err)
}