aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-09-13 11:06:12 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-09-13 11:06:12 +0200
commit9226743d22e42071a703f793a266934407483451 (patch)
treedc35635abfe5af1d93aba3ac7dfd865c0d43631c /subprojects/frontend
parentchore(deps): bump dependencies (diff)
downloadrefinery-9226743d22e42071a703f793a266934407483451.tar.gz
refinery-9226743d22e42071a703f793a266934407483451.tar.zst
refinery-9226743d22e42071a703f793a266934407483451.zip
fix: example Statechart specification
The default multiplicity is [0..1].
Diffstat (limited to 'subprojects/frontend')
-rw-r--r--subprojects/frontend/src/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/frontend/src/index.tsx b/subprojects/frontend/src/index.tsx
index 4b251a23..60debd6b 100644
--- a/subprojects/frontend/src/index.tsx
+++ b/subprojects/frontend/src/index.tsx
@@ -33,7 +33,7 @@ abstract class Vertex {
33 33
34class Transition { 34class Transition {
35 container Vertex source opposite outgoingTransition 35 container Vertex source opposite outgoingTransition
36 Vertex target opposite incomingTransition 36 Vertex[1] target opposite incomingTransition
37} 37}
38 38
39abstract class Pseudostate extends Vertex. 39abstract class Pseudostate extends Vertex.