Status: New
Owner: ----

New issue 225 by young.lu...@gmail.com: Typo; descriptions out of order
http://code.google.com/p/piccolo2d/issues/detail?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.

--
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en

Reply via email to