Skip to content

Commit

Permalink
Merge pull request #5243 from jonmcewen/c4-sys-boundary-stereotype
Browse files Browse the repository at this point in the history
Correct the System_Boundary stereotype
  • Loading branch information
nirname authored Jun 20, 2024
2 parents 4b21e1e + c468319 commit d95c159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mermaid/src/diagrams/c4/parser/c4Diagram.jison
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ boundaryStartStatement

boundaryStart
: ENTERPRISE_BOUNDARY attributes {$2.splice(2, 0, 'ENTERPRISE'); yy.addPersonOrSystemBoundary(...$2); $$=$2;}
| SYSTEM_BOUNDARY attributes {$2.splice(2, 0, 'ENTERPRISE'); yy.addPersonOrSystemBoundary(...$2); $$=$2;}
| SYSTEM_BOUNDARY attributes {$2.splice(2, 0, 'SYSTEM'); yy.addPersonOrSystemBoundary(...$2); $$=$2;}
| BOUNDARY attributes {yy.addPersonOrSystemBoundary(...$2); $$=$2;}
| CONTAINER_BOUNDARY attributes {$2.splice(2, 0, 'CONTAINER'); yy.addContainerBoundary(...$2); $$=$2;}
| NODE attributes {yy.addDeploymentNode('node', ...$2); $$=$2;}
Expand Down

0 comments on commit d95c159

Please sign in to comment.