We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a8b834c + 20d7870 commit 7340603Copy full SHA for 7340603
1 file changed
README.md
@@ -84,7 +84,7 @@ Unix domain sockets can be used as well. The `host` portion of the URI should be
84
set to the absolute path to the directory containing the socket file. Since `/`
85
is a reserved character in URLs, the path should be URL encoded.
86
```rust
87
-let conn = try!(PosgresConnection::connect("postgres://postgres@%2Frun%2Fpostgres", &NoSsl));
+let conn = try!(PostgresConnection::connect("postgres://postgres@%2Frun%2Fpostgres", &NoSsl));
88
```
89
Paths which contain non-UTF8 characters can be handled in a different manner;
90
see the documentation for details.
0 commit comments