nus-cs2113-AY2122S1 / forum

3 stars 1 forks source link

PlantUml Constructor glitch? #120

Open theodorekwok opened 2 years ago

theodorekwok commented 2 years ago

It was pointed out that there is a small gap between the bar and the entity when creating as a constructor

ss1

May I ask if its something we can ignore or will we get penalised for this?

okkhoy commented 2 years ago

If you used the create call correctly, it should not result in the gap (at least that has been my experience)

e.g,

@startuml
hide footbox
participant ":Executor" as E
participant ":DoneCommand" as D
create D
E -> D
activate D
@enduml

will give:

image

theodorekwok commented 2 years ago

Ok thank you so much!