Skip to content

Commit 3ee4065

Browse files
authored
Update README.md
1 parent 9ee87cb commit 3ee4065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ hashfn = LSHFunction(similarity function,
5757
For example, the following snippet generates 10 locality-sensitive hash functions (bundled together into a single `SimHash` struct) for cosine similarity:
5858

5959
```julia
60-
julia> using LSHFunction;
60+
julia> using LSHFunctions;
6161

6262
julia> hashfn = LSHFunction(cossim, 10);
6363

@@ -68,7 +68,7 @@ julia> similarity(hashfn)
6868
cossim
6969
```
7070

71-
You can then start hashing new vectors by calling `hashfn()`:
71+
You can hash inputs by calling `hashfn()`:
7272

7373
```julia
7474
julia> x = randn(128);

0 commit comments

Comments
 (0)