doc: fix example hyperlink

This commit is contained in:
K Shiva Kiran 2024-04-18 23:02:11 +05:30
parent 1aa60592ba
commit 67ab21cdbe
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "false-bottom"
version = "0.2.0"
version = "0.2.2"
description = "A deniable encryption scheme"
repository = "https://codeberg.org/skran/false-bottom"
authors = ["K Shiva Kiran <shiva_kr@riseup.net>"]

View File

@ -30,13 +30,13 @@
//! The [`decrypt()`](FBObj::decrypt()) method returns the message that corresponds
//! to the provided [`FBKey`].
//! ```rust
//! let decrypted = fb.decrypt(&key);
//! let decrypted = fb.decrypt(&key).unwrap();
//! ```
//! There is also an example [here](examples/encryption.rs).
//! There is also an example [here](https://codeberg.org/skran/false-bottom/src/branch/main/examples/encryption.rs).
//!
//! ### Import and Export
//! Available formats: Raw bytes and Base64 encoded.
//! Refer to the [example](examples/export.rs).
//! Refer to the [example](https://codeberg.org/skran/false-bottom/src/branch/main/examples/export.rs)
mod algo;
mod arithmetic;