aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2023-03-17 00:37:37 +0000
committerAnthony Wang2023-03-17 00:37:37 +0000
commitfe80a19358fb0c16ed0db1dbc793631e40540420 (patch)
treeadde6ba8394072b319307ca5d83044dfc13b91f5
parentdb559aa991de805e2a22ecfe2613c5687a85eee0 (diff)
Add missing space
-rw-r--r--segmenttree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/segmenttree.c b/segmenttree.c
index efd2fb7..3ad3f45 100644
--- a/segmenttree.c
+++ b/segmenttree.c
@@ -15,7 +15,7 @@ void build(sqlite3_stmt *stmt, int l, int r, int n) {
seg[n] = seg[n << 1] + seg[n << 1 | 1];
}
-/* Update value at index x*/
+/* Update value at index x */
void update(int x, int v, int l, int r, int n) {
if (l == r) {
seg[n] = v;