Example cleanup

This commit is contained in:
Steven Fackler 2020-02-09 09:58:18 -08:00
parent 14252af4c3
commit 4c0ee2c715

View File

@ -322,7 +322,7 @@ impl Client {
/// ```no_run /// ```no_run
/// # async fn async_main(client: &tokio_postgres::Client) -> Result<(), tokio_postgres::Error> { /// # async fn async_main(client: &tokio_postgres::Client) -> Result<(), tokio_postgres::Error> {
/// use tokio_postgres::types::ToSql; /// use tokio_postgres::types::ToSql;
/// use futures::{pin_mut, StreamExt}; /// use futures::{pin_mut, TryStreamExt};
/// ///
/// let params: Vec<String> = vec![ /// let params: Vec<String> = vec![
/// "first param".into(), /// "first param".into(),
@ -334,7 +334,7 @@ impl Client {
/// ).await?; /// ).await?;
/// ///
/// pin_mut!(it); /// pin_mut!(it);
/// while let Some(row) = it.next().await.transpose()? { /// while let Some(row) = it.try_next().await? {
/// let foo: i32 = row.get("foo"); /// let foo: i32 = row.get("foo");
/// println!("foo: {}", foo); /// println!("foo: {}", foo);
/// } /// }