diff --git a/_search-plugins/knn/approximate-knn.md b/_search-plugins/knn/approximate-knn.md
index e49e3280..79d629a1 100644
--- a/_search-plugins/knn/approximate-knn.md
+++ b/_search-plugins/knn/approximate-knn.md
@@ -305,7 +305,7 @@ A space corresponds to the function used to measure the distance between two poi
cosinesimil |
\[ d(\mathbf{x}, \mathbf{y}) = 1 - cos { \theta } = 1 - {\mathbf{x} · \mathbf{y} \over \|\mathbf{x}\| · \|\mathbf{y}\|}\]\[ = 1 -
{\sum_{i=1}^n x_i y_i \over \sqrt{\sum_{i=1}^n x_i^2} · \sqrt{\sum_{i=1}^n y_i^2}}\]
- where \(\|\mathbf{x}\|\) and \(\|\mathbf{y}\|\) represent normalized vectors. |
+ where \(\|\mathbf{x}\|\) and \(\|\mathbf{y}\|\) represent the norms of vectors x and y respectively.
nmslib and faiss:\[ score = {1 \over 1 + d } \] Lucene:\[ score = {1 + d \over 2}\] |