add missing 'tls' field in doctest

This commit is contained in:
Edwin Svensson 2024-01-14 00:57:20 +01:00
parent b6fd0bb14e
commit d5a40fc72b
No known key found for this signature in database
GPG Key ID: 7F9EC4DD0C67951F
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ use serde::{Serialize, Deserialize};
/// Config { /// Config {
/// url: "postgres://root:root@localhost/my_database".into(), /// url: "postgres://root:root@localhost/my_database".into(),
/// pool_size: 10, /// pool_size: 10,
/// timeout: 5 /// timeout: 5,
/// tls: None,
/// }; /// };
/// ``` /// ```
/// ///