Why is a comma in a function forcing a "Function not found" Erro

0 votes
asked Apr 8, 2020 in Bug by kjw

The comma in the third call of COMMENT forces and error - escaping doesn't work - removing does ??

@startuml
!define COMMENT(x) <b><color:grey>x</color></b>

class LPConversationHistoryControlParam <<NSObject>> {
  var historyConversationsStateToDisplay: LPConversationsHistoryStateToDisplay 
  COMMENT( control what kind of conversation to show Open or Close)
  var historyConversationsMaxDays: Int 
  COMMENT( get conversation that Closed or Opens in the last X days)
  var isEnable: Bool 
  COMMENT( whether filtering by open or close, or filtering by historyConversationsMaxDays )
  var historyConversationMaxDaysType: LPConversationHistoryMaxDaysDateType? 
  COMMENT( Control if filter the max days by conversation start date or by conversation close date )
}
@enduml

1 Answer

0 votes
answered Apr 8, 2020 by plantuml (295,000 points)
...