From 2f3e242c385bc283b61ea1d5ff0cf924a61a7c9f Mon Sep 17 00:00:00 2001 From: Mann Patel <46739555+manncodes@users.noreply.github.com> Date: Sun, 6 Jun 2021 08:36:06 +0530 Subject: [PATCH] minor changes in file info suggested changes 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 a119be5ea..1aabfd27c 100644 --- a/data_structures/sparse_table.cpp +++ b/data_structures/sparse_table.cpp @@ -16,7 +16,7 @@ * If any element in the array changes, the complete data structure has to be * recomputed. * - * @warning this sparse table is made for min(a1,a2,...an) duplicate invariant + * @warning this sparse table is made for `min(a1,a2,...an)` duplicate invariant * function. This implementation can be changed to other functions like * gcd(),lcm(),max() by changing few lines of code. */