[squeak-dev] The Inbox: System-ct.1086.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 15 15:44:22 UTC 2019


A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-ct.1086.mcz

==================== Summary ====================

Name: System-ct.1086
Author: ct
Time: 15 August 2019, 5:44:16.577735 pm
UUID: f5823ddc-52ec-1646-9c42-c7976406b360
Ancestors: System-mt.1085

Fix a typo

=============== Diff against System-mt.1085 ===============

Item was changed:
  ----- Method: Project>>tellAFriend: (in category 'SuperSwiki') -----
  tellAFriend: emailAddressOrNil 
  	"
+ 	Project current tellAFriend
- 	Project current tellAFrien
  	"
  	| urlForLoading |
  	(urlForLoading := self urlForLoading)
  		ifNil: [urlForLoading := self url
  			"fallback for dtp servers"].
  	urlForLoading isEmptyOrNil
  		ifTrue: [^ self inform: 'Since this project has not been saved yet,
  I cannot tell someone where it is.' translated].
  	FancyMailComposition new
  		celeste: nil
  		to: (emailAddressOrNil
  				ifNil: ['RECIPIENT.GOESHERE'])
  		subject: 'New/Updated Squeak project'
  		initialText: 'This is a link to the Squeak project ' , self name , ': ' , String crlf
  		theLinkToInclude: urlForLoading;
  		 open!



More information about the Squeak-dev mailing list