GildedRose-Refactoring-Kata/plantuml/history/02_sell-by-passed.puml
2019-12-30 13:32:23 +01:00

20 lines
269 B
Plaintext

@startuml
start
note left
Do this for each item in the list.
An item has a name, a sell in value and a quality value
end note
:lower quality with 1;
:lower sell in with 1;
if (sell in < 0) then (yes)
:lower quality with 1;
else (no)
endif
stop
@enduml