From 6b4e708108c17162009fd3c0420790c8bb77c5ca Mon Sep 17 00:00:00 2001 From: Mann Patel <46739555+manncodes@users.noreply.github.com> Date: Sun, 6 Jun 2021 09:37:09 +0530 Subject: [PATCH] Update data_structures/sparse_table.cpp Co-authored-by: David Leal --- data_structures/sparse_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/sparse_table.cpp b/data_structures/sparse_table.cpp index eecab03ff..b402e3e27 100644 --- a/data_structures/sparse_table.cpp +++ b/data_structures/sparse_table.cpp @@ -38,7 +38,7 @@ namespace sparse_table { /** * @brief A struct to represent sparse table for `min()` as their invariant - * function, for the given array `A`. The answer to queries are stored in array + * function, for the given array `A`. The answer to queries are stored in the array * ST. */ struct Sparse_table {