Skip to content

Commit 003058c

Browse files
committed
Shared/Ruby: Use e for edges in documentation
1 parent d6e8acd commit 003058c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ruby/ql/lib/codeql/ruby/controlflow/BasicBlocks.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ final class BasicBlock extends BasicBlocksImpl::BasicBlock {
177177
*
178178
* Edge dominance is similar to node dominance except it concerns edges
179179
* instead of nodes: A basic block is dominated by a _basic block_ `bb` if it
180-
* can only be reached through `bb` and dominated by an _edge_ `s` if it can
181-
* only be reached through `s`.
180+
* can only be reached through `bb` and dominated by an _edge_ `e` if it can
181+
* only be reached through `e`.
182182
*
183183
* Note that where all basic blocks (except the entry basic block) are
184184
* strictly dominated by at least one basic block, a basic block may not be

shared/controlflow/codeql/controlflow/BasicBlock.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ module Make<LocationSig Location, InputSig<Location> Input> {
177177
*
178178
* Edge dominance is similar to node dominance except it concerns edges
179179
* instead of nodes: A basic block is dominated by a _basic block_ `bb` if
180-
* it can only be reached through `bb` and dominated by an _edge_ `s` if it
181-
* can only be reached through `s`.
180+
* it can only be reached through `bb` and dominated by an _edge_ `e` if it
181+
* can only be reached through `e`.
182182
*
183183
* Note that where all basic blocks (except the entry basic block) are
184184
* strictly dominated by at least one basic block, a basic block may not be

0 commit comments

Comments
 (0)