Skip to content

Commit

Permalink
Fix bugs in docs page (#1796)
Browse files Browse the repository at this point in the history
  • Loading branch information
KuechA authored Oct 18, 2024
1 parent 965bfdf commit 6c0682a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs/CPG/specs/dfg.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ The return value flows to the whole statement.
Scheme:
```mermaid
flowchart LR
exception -- DFG --> node([ReturnStatement]);
exception -- DFG --> node([ThrowStatement]);
parentException -- DFG --> node;
exception -.- node;
parentException -.- node;
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/CPG/specs/eog.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ flowchart LR
prev:::outer --EOG--> child1["exception"]
child1 --EOG--> child2["parentException"]
child2 --EOG-->parent
parent(["throw"]) --EOG--> catchingContext:::outer
parent(["ThrowStatement"]) --EOG--> catchingContext:::outer
parent -.-> child1
parent -.-> child2
Expand Down

0 comments on commit 6c0682a

Please sign in to comment.