]> gitweb.factorcode.org Git - factor.git/commitdiff
help.tour: map does not work on linked lists
authorrazetime <raghuallthetime@hotmail.com>
Sat, 21 Jan 2023 10:06:30 +0000 (15:36 +0530)
committerrazetime <raghuallthetime@hotmail.com>
Sat, 21 Jan 2023 10:06:30 +0000 (15:36 +0530)
basis/help/tour/tour.factor

index ae57a84e9edec8a274c1a694000e100d8344915e..94a431c163a28c0a335139bb7789061cb75c97d6 100644 (file)
@@ -498,7 +498,7 @@ The term object-oriented has as many different meanings as people using it. One
 central to the work of Alan Kay - is that it is about late binding of function names. In Smalltalk, the language where this 
 concept was born, people do not talk about calling a method, but rather sending a message to an object. It is up to the 
 object to decide how to respond to this message, and the caller should not know about the implementation. For instance, 
-one can send the message { $link map } both to an array and a linked list, but internally the iteration will be handled 
+one can send the message { $link map } both to an array and a vector, but internally the operation will be handled 
 differently.
 
 The binding of the message name to the method implementation is dynamic, and this is regarded as the core strength of