Skip to content

Commit b937bc2

Browse files
authored
Merge pull request #103 from shepmaster/maint
Maintenance
2 parents bbfa771 + bd2341a commit b937bc2

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
toolchain: stable
7676
components: rustfmt, clippy
7777

78-
- run: cargo fmt --all
78+
- run: cargo fmt --check --all
7979

8080
- run: cargo clippy --all --all-targets --all-features
8181

comparison/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ have additional overhead for each function call.
77

88
Click any graph to see it full-size.
99

10-
# XXHash64
10+
# xxHash64
1111

1212
## Oneshot hashing
1313

@@ -40,7 +40,7 @@ various chunk sizes.
4040
<a href="./results/xxhash64-streaming-aarch64.svg">
4141
<img
4242
src="./results/xxhash64-streaming-aarch64.svg"
43-
alt="XXHash64, streaming data, on an aarch64 processor"
43+
alt="xxHash64, streaming data, on an aarch64 processor"
4444
/>
4545
</a>
4646

@@ -49,7 +49,7 @@ various chunk sizes.
4949
<a href="./results/xxhash64-streaming-x86_64.svg">
5050
<img
5151
src="./results/xxhash64-streaming-x86_64.svg"
52-
alt="XXHash64, streaming data, on an x86_64 processor"
52+
alt="xxHash64, streaming data, on an x86_64 processor"
5353
/>
5454
</a>
5555

@@ -62,7 +62,7 @@ Compares the **time taken** to hash 0 to 32 bytes of data.
6262
<a href="./results/xxhash64-tiny_data-aarch64.svg">
6363
<img
6464
src="./results/xxhash64-tiny_data-aarch64.svg"
65-
alt="XXHash64, small data, on an aarch64 processor"
65+
alt="xxHash64, small data, on an aarch64 processor"
6666
/>
6767
</a>
6868

@@ -71,12 +71,12 @@ Compares the **time taken** to hash 0 to 32 bytes of data.
7171
<a href="./results/xxhash64-tiny_data-x86_64.svg">
7272
<img
7373
src="./results/xxhash64-tiny_data-x86_64.svg"
74-
alt="XXHash64, small data, on an x86_64 processor"
74+
alt="xxHash64, small data, on an x86_64 processor"
7575
/>
7676
</a>
7777

7878

79-
# XXHash3 (64-bit)
79+
# xxHash3 (64-bit)
8080

8181
## Oneshot hashing
8282

@@ -113,7 +113,7 @@ various chunk sizes.
113113
<a href="./results/xxhash3_64-streaming-aarch64.svg">
114114
<img
115115
src="./results/xxhash3_64-streaming-aarch64.svg"
116-
alt="XXHash3, 64-bit, streaming data, on an aarch64 processor"
116+
alt="xxHash3, 64-bit, streaming data, on an aarch64 processor"
117117
/>
118118
</a>
119119

@@ -122,7 +122,7 @@ various chunk sizes.
122122
<a href="./results/xxhash3_64-streaming-x86_64.svg">
123123
<img
124124
src="./results/xxhash3_64-streaming-x86_64.svg"
125-
alt="XXHash3, 64-bit, streaming data, on an x86_64 processor"
125+
alt="xxHash3, 64-bit, streaming data, on an x86_64 processor"
126126
/>
127127
</a>
128128

@@ -137,7 +137,7 @@ cluttering the graph and wasting benchmarking time.
137137
<a href="./results/xxhash3_64-tiny_data-aarch64.svg">
138138
<img
139139
src="./results/xxhash3_64-tiny_data-aarch64.svg"
140-
alt="XXHash3, 64-bit, small data, on an aarch64 processor"
140+
alt="xxHash3, 64-bit, small data, on an aarch64 processor"
141141
/>
142142
</a>
143143

@@ -146,7 +146,7 @@ cluttering the graph and wasting benchmarking time.
146146
<a href="./results/xxhash3_64-tiny_data-x86_64.svg">
147147
<img
148148
src="./results/xxhash3_64-tiny_data-x86_64.svg"
149-
alt="XXHash3, 64-bit, small data, on an x86_64 processor"
149+
alt="xxHash3, 64-bit, small data, on an x86_64 processor"
150150
/>
151151
</a>
152152

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![doc = include_str!("../README.md")]
2-
32
#![deny(rust_2018_idioms)]
43
#![deny(missing_docs)]
54
#![cfg_attr(not(feature = "std"), no_std)]

0 commit comments

Comments
 (0)