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

Merge branch 'minor_fixes' into 'master'

Minor fixes

See merge request !4
parents ec7d7a7b 391bdf3c
No related branches found
No related tags found
1 merge request!4Minor fixes
Pipeline #82 passed
......@@ -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 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
......@@ -65,4 +65,4 @@ OPTIONS:
Examples:
dotacat f - g Output f's contents, then stdin, then g's contents.
fortune | dotacat Display a rainbow cookie.
```
\ No newline at end of file
```
......@@ -50,7 +50,7 @@ fn main() {
}
let mut seed: f64 = opts.seed;
if seed == 0.0 {
if seed.abs() < 0.00001 {
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