You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by st...@apache.org on 2005/05/23 20:00:56 UTC

svn commit: r177990 - /incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml

Author: steveh
Date: Mon May 23 11:00:56 2005
New Revision: 177990

URL: http://svn.apache.org/viewcvs?rev=177990&view=rev
Log:
Fixing error in sample code -- contributed by Aaron Schram.

Modified:
    incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml

Modified: incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml?rev=177990&r1=177989&r2=177990&view=diff
==============================================================================
--- incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml (original)
+++ incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml Mon May 23 11:00:56 2005
@@ -32,7 +32,7 @@
 <source>OrderQueueBean orderBean = (OrderQueueBean)
 
 java.beans.Beans.instantiate("org.apache.beehive.controls.examples.OrderQueueBean");
-Order order = new Order(myID, new String [ ] {"item1", "item2"};
+Order order = new Order(myID, new String [ ] {"item1", "item2"});
 OrderBean.submitOrder(order, "01-28-2004");
 </source>
 <p>This document starts with a brief overview of the Control Authoring and Client Programming Models to establish some basic context, eventually building to enable the example above.</p>