From f03efefac509d77e1337ef6d1c20a114445e38f9 Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Tue, 8 Dec 2020 08:44:55 +0100 Subject: [PATCH] Wording : node instead of task in Class Diagram --- src/diagrams/class/parser/classDiagram.jison | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/diagrams/class/parser/classDiagram.jison b/src/diagrams/class/parser/classDiagram.jison index 1aedeb7c1..599910648 100644 --- a/src/diagrams/class/parser/classDiagram.jison +++ b/src/diagrams/class/parser/classDiagram.jison @@ -49,7 +49,7 @@ /* ---interactivity command--- -'href' adds a link to the specified task. 'href' can only be specified when the +'href' adds a link to the specified node. 'href' can only be specified when the line was introduced with 'click'. 'href ""' attaches the specified link to the node that was specified by 'click'. */ @@ -59,10 +59,10 @@ line was introduced with 'click'. /* ---interactivity command--- -'call' adds a callback to the specified task. 'call' can only be specified when +'call' adds a callback to the specified node. 'call' can only be specified when the line was introduced with 'click'. 'call ()' attaches the function 'callbackname' with the specified -arguments to the task that was specified by 'click'. +arguments to the node that was specified by 'click'. Function arguments are optional: 'call ()' simply executes 'callbackname' without any arguments. */ "call"[\s]+ this.begin("callbackname");