[FIX][DOC] Fix comment buglet in Dictionary>>valuesDo:

Hannes Hirzel hannes.hirzel.squeaklist at bluewin.ch
Wed Feb 19 21:32:26 UTC 2003


I resend this so that it will not be filtered out when we harvest the
[DOCS] emails.

Hannes Hirzel for the documentation team.



"David T. Lewis" <lewis at mail.msen.com> wrote:
> 
> --xesSdrSSBC0PokLI
> Content-Type: text/plain; charset=us-ascii
> Content-Disposition: inline
> 
> This fixes the method comment for Dictionary>>valuesDo: which appears to
> have been incorrectly cut-n-pasted.
> 
> Comment was:
>   Evaluate aBlock for each of the receiver's keys.
> Changed to:
>   Evaluate aBlock for each of the receiver's values.
> 
> Dave
> 
> 
> --xesSdrSSBC0PokLI
> Content-Type: text/plain; charset=us-ascii
> Content-Disposition: attachment; filename="DictionaryCommentFix-dtl.cs"
> 
> 'From Squeak3.4gamma of ''7 January 2003'' [latest update: #5169] on 19 February 2003 at 4:11:55 pm'!
> "Change Set:		DictionaryCommentFix-dtl
> Date:			19 February 2003
> Author:			David T. Lewis
> 
> Fixed the method comment for Dictionary>>valuesDo:
> 
> Comment was:
>   Evaluate aBlock for each of the receiver's keys.
> Changed to:
>   Evaluate aBlock for each of the receiver's values.
> "!
> 
> 
> !Dictionary methodsFor: 'enumerating' stamp: 'dtl 2/17/2003 09:48'!
> valuesDo: aBlock 
> 	"Evaluate aBlock for each of the receiver's values."
> 
> 	self associationsDo: [:association | aBlock value: association value]! !
> --xesSdrSSBC0PokLI
> Content-Type: text/plain; charset="us-ascii"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> 
> 
> 
> --xesSdrSSBC0PokLI--



More information about the Squeak-dev mailing list