Skip to content

Commit 3d1824a

Browse files
authored
Apply suggestions from code review
1 parent c001134 commit 3d1824a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydatastructs/miscellaneous_data_structures/sparse_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def query(self, start, end):
8686
start: int
8787
The starting index of the range.
8888
end: int
89-
The ending index of the range
89+
The ending index of the range.
9090
"""
9191
j = int(math.log2(end - start + 1)) + 1
9292
answer = None

0 commit comments

Comments
 (0)