summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-19 08:39:48 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-19 08:39:48 -0800
commitf41fd3efc0512c9e33e606afd14439c36bd6df60 (patch)
tree0d96d10d4ba773804ac295e483d8a1c8a6988a2b /src
parentc6998c5c338451892d5d6771603b9d69f58842bd (diff)
downloadssh2-rs-f41fd3efc0512c9e33e606afd14439c36bd6df60.zip
Fix doc comment
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c50e83a..4999a0f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -24,7 +24,7 @@
//!
//! for identity in agent.identities() {
//! let identity = identity.unwrap(); // assume no I/O errors
-//! println!("{}", identity.comment())
+//! println!("{}", identity.comment());
//! let pubkey = identity.blob();
//! }
//! ```