Skip to content

Commit a6f9182

Browse files
authored
Rename VStore to Vztor in README.md
1 parent b7cf50b commit a6f9182

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ Add Vztor as a dependency in your `build.zig.zon`:
4242

4343
```zig
4444
const std = @import("std");
45-
const VStore = @import("vztor").VStore;
45+
const Vztor = @import("vztor").Vztor;
4646
const nmslib = @import("nmslib");
4747
4848
pub fn main() !void {
4949
const allocator = std.heap.page_allocator;
5050
51-
var store = try VStore.init(
51+
var store = try Vztor.init(
5252
allocator,
5353
"my_database", // Database path
5454
"negdotprod_sparse", // Space type
@@ -110,11 +110,11 @@ try store.save();
110110

111111
## API Reference
112112

113-
### VStore
113+
### Vztor
114114

115115
#### `init(allocator, comptime db_path, space_type, vector_type, dist_type, max_readers)`
116116

117-
Initializes a new VStore instance or loads an existing one from disk.
117+
Initializes a new Vztor instance or loads an existing one from disk.
118118

119119
- `allocator`: Memory allocator
120120
- `db_path`: Path to the database directory (comptime string)

0 commit comments

Comments
 (0)