The Trunk: Tools-dtl.768.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tools-dtl.768.mcz

commits-2
David T. Lewis uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-dtl.768.mcz

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

Name: Tools-dtl.768
Author: dtl
Time: 16 September 2017, 9:40:44.948741 pm
UUID: a6a1ba7b-4614-46de-974b-41ced829733d
Ancestors: Tools-dtl.767

Fix comments

=============== Diff against Tools-dtl.767 ===============

Item was changed:
  ----- Method: ObjectExplorer>>copyName (in category 'menus - actions') -----
  copyName
+ "Copy the name of the current variable, so the user can paste it into the window below and work with it."
- "Copy the name of the current variable, so the user can paste it into the window below and work with is."
 
  Clipboard clipboardText: self currentSelection key. !

Item was changed:
  ----- Method: ObjectExplorer>>copyValue (in category 'menus - actions') -----
  copyValue
+ "Copy a description of the value of the current variable, so the user can paste it into the window below and work with it."
- "Copy the name of the current variable, so the user can paste it into the window below and work with is."
 
  Clipboard clipboardText: self currentSelection value asStringOrText. !