Skip to content

Commit 0137a2e

Browse files
committed
docs: update docs for new functions
1 parent b5d8844 commit 0137a2e

File tree

1 file changed

+2
-1
lines changed
  • postgresql_embedded/src/command

1 file changed

+2
-1
lines changed

postgresql_embedded/src/command/psql.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ impl PsqlBuilder {
269269
self
270270
}
271271

272-
/// database user name
272+
/// user password
273273
pub fn pg_password<S: AsRef<OsStr>>(mut self, pg_password: S) -> Self {
274274
self.pg_password = Some(pg_password.as_ref().to_os_string());
275275
self
@@ -448,6 +448,7 @@ impl CommandBuilder for PsqlBuilder {
448448
args
449449
}
450450

451+
/// Get the environment variables for the command
451452
fn get_envs(&self) -> Vec<(OsString, OsString)> {
452453
let mut envs: Vec<(OsString, OsString)> = Vec::new();
453454

0 commit comments

Comments
 (0)