From 1a620eda7f3a097dea30689b0b007910b3f27198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20M=C3=BCller?= <34514239+appgurueu@users.noreply.github.com> Date: Tue, 12 Mar 2024 16:11:41 +0100 Subject: [PATCH] Fix typo --- src/data_structures/k_d_tree.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_structures/k_d_tree.lua b/src/data_structures/k_d_tree.lua index e8ab7d7..2d05085 100644 --- a/src/data_structures/k_d_tree.lua +++ b/src/data_structures/k_d_tree.lua @@ -1,4 +1,4 @@ --- k-d trees are d-dimensional binary search trees. +-- k-d trees are k-dimensional binary search trees. -- They are particularly suitable for answering nearest neighbor queries after preprocessing a set of points. local k_d_tree = {}