We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99b40ef commit f10cdfcCopy full SHA for f10cdfc
1 file changed
src/DataFrame/DataFrame.class.st
@@ -2359,10 +2359,7 @@ DataFrame >> toLatex [
2359
2360
dataFrame columnNames withIndexDo: [ :columnName :index |
2361
| paddedColumnName |
2362
- paddedColumnName := (columnName isString
2363
- ifFalse: [ columnName asString ]
2364
- ifTrue: [ columnName ]) padRightTo:
2365
- (columnWidths at: index).
+ paddedColumnName := columnName asString padRightTo: (columnWidths at: index).
2366
index = dataFrame numberOfColumns
2367
ifFalse: [ markdown nextPutAll: paddedColumnName , ' & ' ]
2368
ifTrue: [ markdown nextPutAll: paddedColumnName ] ].
0 commit comments