Skip to content

Commit 4f4668b

Browse files
committed
fix typos in README.md
1 parent dd2a8f6 commit 4f4668b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<img src="/docs/logo.png" alt="comptime-hashmap logo" width="75%"/>
44
</p>
55

6-
# **Comptime HashMap**
7-
8-
**Comptime HashMap** is a zero‑dependency Zig package that generates perfect, read‑only hash maps entirely at **comptime**. Supply your key/value pairs once and receive a fully‑typed lookup table with:
6+
**comphash** is a zero‑dependency Zig package that generates perfect, read‑only hash maps entirely at **comptime**. Supply your key/value pairs once and receive a fully‑typed lookup table with:
97

108
* **O(1)** expected access.
119
* Custom **hash functions** (defaults to `xxHash64`).
@@ -61,7 +59,7 @@ This lets you `const ch = @import("comphash");` in your Zig code.
6159

6260
```zig
6361
const std = @import("std");
64-
const ch = @import("comptime_hashmap");
62+
const ch = @import("comphash");
6563
6664
const FruitMap = ch.ComptimeHashMap(u32, null, null, null);
6765
@@ -130,4 +128,4 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file
130128

131129
## 📞 **Contact & Contributing**
132130

133-
Feel free to open an [issue](https://github.com/galactixx/comptime-hashmap/issues) or a pull request. Discussion and feedback are welcome!
131+
Feel free to open an [issue](https://github.com/galactixx/comphash/issues) or a pull request. Discussion and feedback are welcome!

src/lib.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
const impl = @import("comphash.zig");
22

3+
pub const Prober = impl.Prober;
34
pub const ComptimeHashMap = impl.ComptimeHashMap;

0 commit comments

Comments
 (0)