Skip to content

Commit

Permalink
Shared/Ruby: Use e for edges in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
paldepind committed Feb 11, 2025
1 parent d6e8acd commit 003058c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ruby/ql/lib/codeql/ruby/controlflow/BasicBlocks.qll
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ final class BasicBlock extends BasicBlocksImpl::BasicBlock {
*
* Edge dominance is similar to node dominance except it concerns edges
* instead of nodes: A basic block is dominated by a _basic block_ `bb` if it
* can only be reached through `bb` and dominated by an _edge_ `s` if it can
* only be reached through `s`.
* can only be reached through `bb` and dominated by an _edge_ `e` if it can
* only be reached through `e`.
*
* Note that where all basic blocks (except the entry basic block) are
* strictly dominated by at least one basic block, a basic block may not be
Expand Down
4 changes: 2 additions & 2 deletions shared/controlflow/codeql/controlflow/BasicBlock.qll
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ module Make<LocationSig Location, InputSig<Location> Input> {
*
* Edge dominance is similar to node dominance except it concerns edges
* instead of nodes: A basic block is dominated by a _basic block_ `bb` if
* it can only be reached through `bb` and dominated by an _edge_ `s` if it
* can only be reached through `s`.
* it can only be reached through `bb` and dominated by an _edge_ `e` if it
* can only be reached through `e`.
*
* Note that where all basic blocks (except the entry basic block) are
* strictly dominated by at least one basic block, a basic block may not be
Expand Down

0 comments on commit 003058c

Please sign in to comment.