fix example in lib.rs

This commit is contained in:
Ritesh Chitlangi 2021-11-18 20:23:54 +08:00
parent 554aa5a5c6
commit a1600826a2
1 changed files with 2 additions and 2 deletions

View File

@ -84,10 +84,10 @@
//! .iter() //! .iter()
//! .for_each(|chk| println!("Domain: {}, Available: {}", chk.domain.name, chk.domain.available)); //! .for_each(|chk| println!("Domain: {}, Available: {}", chk.domain.name, chk.domain.available));
//! //!
//! }
//!
//! // Close the connection //! // Close the connection
//! client.logout().await.unwrap(); //! client.logout().await.unwrap();
//!
//! }
//! ``` //! ```
//! //!
//! The output would look similar to the following //! The output would look similar to the following