Skip to content

Commit

Permalink
fix typo of fenwicktree
Browse files Browse the repository at this point in the history
  • Loading branch information
yosupo06 committed Sep 20, 2020
1 parent 4b22296 commit a94264c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion document_en/fenwicktree.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 44,7 @@ It processes `a[p] = x`.
T fw.sum(int l, int r)
```

It returns `a[l] a[l - 1] ... a[r - 1]`.
It returns `a[l] a[l 1] ... a[r - 1]`.
If `T` is integer type(`int`, `uint`, `ll`, or `ull`), it returns the answer in $\bmod 2^{\mathrm{bit}}$, if overflowed.

**@{keyword.constraints}**
Expand Down

0 comments on commit a94264c

Please sign in to comment.