Array printing aesthetic error
By Andrew Pennebaker - Posted on August 7th, 2011
Project: | GNU Smalltalk |
Component: | Base classes |
Category: | bug |
Priority: | normal |
Assigned: | Unassigned |
Status: | active |
Description
Arrays always print an extra space before the final parenthesis:
st> #(1 2 3)
(1 2 3 )
st> #($a $b $c)
($a $b $c )
Extra space is fine but it should be consistent. Either put an additional extra space after the first parenthesis or remove the extra space altogether.