Skip to content

Commit

Permalink
Fix typo in name
Browse files Browse the repository at this point in the history
  • Loading branch information
marmal95 committed May 4, 2024
1 parent b388e9f commit b98ec9c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "mystic-telegram"
name = "mythic-telegram"
version = "0.1.0"
edition = "2021"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ The following coding algoritms/modes are supported:
### Encode
To encode data using <b>alpha</b> mode:
```lua
mystic-telegram encode --image-file <IMAGE_FILE> --secret-file <SECRET_FILE> alpha
mythic-telegram encode --image-file <IMAGE_FILE> --secret-file <SECRET_FILE> alpha
```

To encode data using <b>rgb</b> mode:
```lua
mystic-telegram encode --image-file <IMAGE_FILE> --secret-file <SECRET_FILE> rgb --bits-per-channel <1/2/3/4>
mythic-telegram encode --image-file <IMAGE_FILE> --secret-file <SECRET_FILE> rgb --bits-per-channel <1/2/3/4>
```

where:
Expand All @@ -32,5 +32,5 @@ where:
### Decode
To decode data:
```lua
mystic-telegram decode --image-file <IMAGE_FILE>
mythic-telegram decode --image-file <IMAGE_FILE>
```
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use image::io::Reader as ImageReader;
use mystic_telegram::{
use mythic_telegram::{
coder,
config::{self, Config, DecodeConfig, EncodeConfig, Mode},
};
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[cfg(test)]
mod tests {
use image::RgbaImage;
use mystic_telegram::{
use mythic_telegram::{
coder::{decoder, encoder},
config::{Algorithm, RgbAlgorithmConfig},
};
Expand Down

0 comments on commit b98ec9c

Please sign in to comment.