Improving setters.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-09-24 12:23:39 -05:00
parent 8fe49106bb
commit 56ef3869ca

View File

@ -230,3 +230,8 @@ Markdown >> printOn: aStream [
Markdown >> title [
^ title ifNil: [ title:= self headerAsTitle ]
]
{ #category : #accessing }
Markdown >> title: aString [
title := aString
]