summaryrefslogtreecommitdiffstats
path: root/openpgp/src/parse/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/parse/stream.rs')
-rw-r--r--openpgp/src/parse/stream.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/parse/stream.rs b/openpgp/src/parse/stream.rs
index 34934d49..83f94533 100644
--- a/openpgp/src/parse/stream.rs
+++ b/openpgp/src/parse/stream.rs
@@ -60,7 +60,7 @@ const BUFFER_SIZE: usize = 25 * 1024 * 1024;
/// # Example
///
/// ```
-/// #[macro_use] extern crate openpgp;
+/// #[macro_use] extern crate sequoia_openpgp as openpgp;
/// extern crate failure;
/// use std::io::Read;
/// use openpgp::{KeyID, TPK, Result};
@@ -471,7 +471,7 @@ impl<'a, H: VerificationHelper> io::Read for Verifier<'a, H> {
/// # Example
///
/// ```
-/// #[macro_use] extern crate openpgp;
+/// #[macro_use] extern crate sequoia_openpgp as openpgp;
/// extern crate failure;
/// use std::io::Read;
/// use openpgp::{KeyID, TPK, Result, packet::{Key, PKESK, SKESK}};