diff --git a/RoloLudo.package/SfOracle.class/instance/optionsWikiTextRow..st b/RoloLudo.package/SfOracle.class/instance/optionsWikiTextRow..st index 55fed40..036623a 100644 --- a/RoloLudo.package/SfOracle.class/instance/optionsWikiTextRow..st +++ b/RoloLudo.package/SfOracle.class/instance/optionsWikiTextRow..st @@ -7,14 +7,14 @@ optionsWikiTextRow: value nextPutAll: (value at: 'Description'), ' |'. value keys size > 1 ifTrue: [ | remaining cell | remaining := value copy removeKey: 'Description'; yourself. - cell := remaining values. + cell := remaining values first. cell class = Array ifTrue: [ - cell first doWithIndex: [:each :i | - output nextPutAll: '[[', each asString,']] '. - (i % 2 = 1) ifTrue: [output nextPutAll: '; ' ] + cell doWithIndex: [:each :i | + output nextPutAll: '[[', each asString,']]'. + (i = cell size) ifFalse: [output nextPutAll: '; ' ] ] ]. - output nextPutAll: '|'. + output nextPutAll: ' |'. ]. ^ output contents \ No newline at end of file