Skip to content
Snippets Groups Projects
Commit 391bdf3c authored by Stephen D's avatar Stephen D
Browse files

Minor fixes

parent ec7d7a7b
No related branches found
No related tags found
1 merge request!4Minor fixes
Pipeline #81 passed
...@@ -36,7 +36,7 @@ Because Dota is better than LoL (According to people - I play neither) ...@@ -36,7 +36,7 @@ Because Dota is better than LoL (According to people - I play neither)
If you have cargo installed, just run: `cargo install dotacat` If you have cargo installed, just run: `cargo install dotacat`
If not, head over to the [releases page](https://git.scd31.com/stephen/dotacat/releases) and download the latest release. Then run: If not, head over to the [releases page](https://gitlab.scd31.com/stephen/dotacat/-/releases/) and download the latest release. Then run:
``` ```
chmod +x dotacat chmod +x dotacat
...@@ -65,4 +65,4 @@ OPTIONS: ...@@ -65,4 +65,4 @@ OPTIONS:
Examples: Examples:
dotacat f - g Output f's contents, then stdin, then g's contents. dotacat f - g Output f's contents, then stdin, then g's contents.
fortune | dotacat Display a rainbow cookie. fortune | dotacat Display a rainbow cookie.
``` ```
\ No newline at end of file
...@@ -50,7 +50,7 @@ fn main() { ...@@ -50,7 +50,7 @@ fn main() {
} }
let mut seed: f64 = opts.seed; let mut seed: f64 = opts.seed;
if seed == 0.0 { if seed.abs() < 0.00001 {
seed = rand::random::<f64>() * 1_000_000.0; seed = rand::random::<f64>() * 1_000_000.0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment