GoogleCodeArchive / piccolo2d

Automatically exported from code.google.com/p/piccolo2d
0 stars 0 forks source link

Typo; descriptions out of order #225

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
on the page http://www.piccolo2d.org/learn/interaction.html, step 1 a includes 
several import lines and then describes what each line imports. the 
descriptions for what the second line and what the third line do are backwards; 
the second line and third lines are, respectively:

import edu.umd.cs.piccolo.event.*;
import edu.umd.cs.piccolo.nodes.*;

and the descriptions are:

The second line includes the default node types that Piccolo2D provides, all of 
which extend PNode.  The third line includes the basic event types. 

EITHER the lines should be switched to:

import edu.umd.cs.piccolo.nodes.*; 
import edu.umd.cs.piccolo.event.*;

OR the descriptions should be switched to:

The second line includes the basic event types. The third line includes the 
default node types that Piccolo2D provides, all of which extend PNode.

I think the first option is probably preferable. 

Original issue reported on code.google.com by young.lu...@gmail.com on 24 Aug 2011 at 12:57

GoogleCodeExporter commented 9 years ago
Thank you for the suggestion.

Original comment by heue...@gmail.com on 26 Oct 2011 at 3:01

GoogleCodeExporter commented 9 years ago
$ svn commit -m "Issue 225 ; apply documentation fix, import statements and 
description were out of order" learn/interaction.html 
...
Committed revision 1153.

Original comment by heue...@gmail.com on 26 Oct 2011 at 3:35

GoogleCodeExporter commented 9 years ago

Original comment by heue...@gmail.com on 26 Nov 2013 at 8:47