From 0b499fe2583667c7f63a1e5780d04d73071d5f02 Mon Sep 17 00:00:00 2001 From: Celine Souchet Date: Mon, 20 Sep 2021 16:57:37 +0200 Subject: [PATCH 1/2] [DOC] Fix the documentation to create an overlay --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f001158..bcc46c3 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ bpmnVisualization::display(bpmn_file) ### Display the BPMN diagram with overlays ```r -overlays <- list(create_overlay("bpmn_element_id_1", "42"), create_overlay("bpmn_element_id_2", "9")) +overlays <- list(bpmnVisualization::create_overlay("bpmn_element_id_1", "42"), bpmnVisualization::create_overlay("bpmn_element_id_2", "9")) bpmnVisualization::display(bpmn_file, overlays) ``` From cdda3a3acf9f68c00577903e54f9b36fb78c1603 Mon Sep 17 00:00:00 2001 From: Celine Souchet Date: Mon, 20 Sep 2021 16:59:44 +0200 Subject: [PATCH 2/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bcc46c3..52788ec 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ bpmnVisualization::display(bpmn_file, overlays) ### Integrate in Shiny Applications -The following displays a BPMN diagram provided as example by the package with an overlay on top of a BPMN element. +The following displays a BPMN diagram provided as an example by the package with an overlay on top of a BPMN element. ```r # Install and load packages