Skip to content

Commit ff4a604

Browse files
jf205shati-patel
andauthored
Update docs/language/learn-ql/writing-queries/debugging-queries.rst
Co-Authored-By: shati-patel <42641846+shati-patel@users.noreply.github.com>
1 parent b2db72d commit ff4a604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/language/learn-ql/writing-queries/debugging-queries.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ That is, you should define a *base case* that allows the predicate to *bottom ou
7373
int depth(Stmt s) {
7474
exists(Callable c | c.getBody() = s | result = 0) // base case
7575
or
76-
result = depth(s.getParent()) + 1 // recursive case
76+
result = depth(s.getParent()) + 1 // recursive call
7777
}
7878

7979
.. pull-quote:: Note

0 commit comments

Comments
 (0)