Hi guys,��

I was reading the Tonel spec here [1] but it is not clear to me the case of the multiline method definitions. Are those allowed or not?�� Say I have a method like this:

testWith: arg1��
�� �� ��with: arg2��
�� �� ��with: arg3

^ 42

Is that valid as Tonel format? Or tonel expects to have method definition in a one liner like:

testWith: arg1 with: arg2 with: arg3

^ 42
��

Thanks in advance,��
��

[1]��https://github.com/pharo-vcs/tonel

--