summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/mod.rs
diff options
context:
space:
mode:
authorIgor Matuszewski <igor@sequoia-pgp.org>2020-04-05 19:42:28 +0200
committerIgor Matuszewski <igor@sequoia-pgp.org>2020-04-08 17:35:44 +0200
commite9f1216d8d5c4de851bfe9f98d65bce473320e9f (patch)
treef94a99744c1cc0595d010930a767269b12db8a15 /openpgp/src/crypto/mod.rs
parent6e065c1cc0054770a59fd84ca05d8e47feed793c (diff)
openpgp: Rename crypto::mpis to crypto::mpi
To be consistent; we don't use plural forms for modules anywhere else and Rust always uses singular forms.
Diffstat (limited to 'openpgp/src/crypto/mod.rs')
-rw-r--r--openpgp/src/crypto/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index 3cb029dd..081e7a0b 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -17,7 +17,7 @@ pub mod hash;
mod keygrip;
pub use self::keygrip::Keygrip;
pub mod mem;
-pub mod mpis;
+pub mod mpi;
mod s2k;
pub use s2k::S2K;
pub mod sexp;