Is there a way to represent the diagram below with out the exit path?
@startuml
:previous
action}
while (repeat\nforever)
:do it
again;
endwhile
->exit
path;
end
@enduml
When I add a detach, as shown below, it removes the repeat path instead:
@startuml
:previous
action}
while (repeat\nforever)
:do it
again;
endwhile
->exit
path;
detach
end
@enduml