Dynamic-Book / drgeo

GNU Dr. Geo, a Dynamic Knowledge Model on geometry
https://www.gnu.org/s/dr-geo
GNU General Public License v3.0
18 stars 1 forks source link

Superfluous space in symbols #32

Closed hilaire closed 6 months ago

hilaire commented 6 months ago

For an unknown reason there are superfluous spaces character (or alike) in symbols of the method below.

!DrGDebuggerWindow methodsFor: 'GUI building' stamp: 'hlsf 10/13/2022 12:08:52'!
customButtonSpecs
    "Answer an array of elements of the form wording, selector, help-message, that characterize the custom button row of a debugger."

    ^{
        {'Restart' translated . #       restart  .      'Restart the step by step execution from its start.' translated } .
        {'Step'  translated .   #   doStep .             'Execute the current message and go to the next message.' translated } .
        {'Step into'         translated . #stepIntoBlock         . 'Step into a block.' translated } .
        {'Run to Cursor' translated . #     runToCursor  .  'Execute the code up to the cursor position.' translated }
    }! !