-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added documentation to transposition.rs #83
Added documentation to transposition.rs #83
Conversation
Happy to merge once the workflow passes! |
Screwed that up when I moved the test over =P |
src/ciphers/transposition.rs
Outdated
#[test] | ||
fn test_word() { | ||
assert_eq!("OMLERX", transposition("key", "lorem")); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this tests a different word, let's keep it. Otherwise, let's add it to the example as well.
I keep forgetting to do a cargo fmt =P |
This should be configurable in your editor of preference, so that you format on save 👀 (some people don't like it, but I strongly recommend it) |
No description provided.