piccolo2d/piccolo2d.java

Typo; descriptions out of order

Closed this issue · 3 comments

mro commented

Originally reported on Google Code with ID 225

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. 

Reported by young.lukas on 2011-08-24 00:57:48

mro commented
Thank you for the suggestion.

Reported by heuermh on 2011-10-26 03:01:23

  • Status changed: Accepted
  • Labels added: Type-Defect, Priority-Medium, Effort-Low, OpSys-All, Toolkit-Piccolo2D.Java, Component-Docs, Milestone-1.3.1
mro commented
$ svn commit -m "Issue 225 ; apply documentation fix, import statements and description
were out of order" learn/interaction.html 
...
Committed revision 1153.

Reported by heuermh on 2011-10-26 03:35:13

  • Status changed: Fixed
mro commented

Reported by heuermh on 2013-11-26 20:47:09

  • Status changed: Verified