Skip to content

Commit 9683a4a

Browse files
committed
Fix missed typo
1 parent 20555b7 commit 9683a4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python_bindings/tests/bindings_test_labels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ def testRandomSelf(self):
2121
# Declaring index
2222
p = hnswlib.Index(space='l2', dim=dim) # possible options are l2, cosine or ip
2323

24-
# Initing index
24+
# Initiating index
2525
# max_elements - the maximum number of elements, should be known beforehand
2626
# (probably will be made optional in the future)
2727
#
2828
# ef_construction - controls index search speed/build speed tradeoff
2929
# M - is tightly connected with internal dimensionality of the data
30-
# stronlgy affects the memory consumption
30+
# strongly affects the memory consumption
3131

3232
p.init_index(max_elements=num_elements, ef_construction=100, M=16)
3333

0 commit comments

Comments
 (0)