Skip to content

Commit

Permalink
Better printOn: for MicInlineToken
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Mar 23, 2024
1 parent 4dd41c6 commit 2d2e543
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Microdown/MicInlineToken.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ MicInlineToken >> delimiter: anObject [

{ #category : 'printing' }
MicInlineToken >> printOn: aStream [
aStream << delimiter printString << $( << string << $)

aStream nextPutAll: 'Token: '.
delimiter printOn: aStream.
aStream << $( << string << $)
]

{ #category : 'accessing' }
Expand Down

0 comments on commit 2d2e543

Please sign in to comment.