I am using PlantUML to create an Activity diagram.
I want the arrow that comes out of Modify Details
to go back to OP2
instead of the diamond.
I have this diagram:
@startuml
|Swimlane1|
start
:OP1;
|Swimlane2|
:OP2;
if (Form Valid?) then (No)
|Swimlane1|
:Modify Details; /' <-- This should point _back_ to OP2 '/
|Swimlane2|
else (Yes)
:Add Detals to System;
endif
:OP3;
|Swimlane2|
:foo5;
stop
@enduml
Which gives this image: