[Avida-SVN] r3194 - development/documentation

baerb at myxo.css.msu.edu baerb at myxo.css.msu.edu
Fri Mar 20 10:56:46 PDT 2009


Author: baerb
Date: 2009-03-20 13:56:46 -0400 (Fri, 20 Mar 2009)
New Revision: 3194

Modified:
   development/documentation/code_death_birth.html
   development/documentation/cpu_tour.html
   development/documentation/environment.html
   development/documentation/structure.html
Log:

Corrected a few errors in grammer



Modified: development/documentation/code_death_birth.html
===================================================================
--- development/documentation/code_death_birth.html	2009-03-20 02:31:37 UTC (rev 3193)
+++ development/documentation/code_death_birth.html	2009-03-20 17:56:46 UTC (rev 3194)
@@ -60,7 +60,7 @@
   <span class="comment">// Alert the scheduler that this cell has a 0 merit.</span>
   <span class="object">schedule</span>-&gt;<span class="method">Adjust</span>(<span class="object">in_cell</span>.<span class="method">GetID</span>(), <span class="class">cMerit</span>(0));
 
-  <span class="comment">// Update the archive (note: genotype adjustment may be defered)</span>
+  <span class="comment">// Update the archive (note: genotype adjustment may be deferred)</span>
   <span class="object">m_world</span>-&gt;<span class="method">GetClassificationManager</span>().<span class="method">AdjustGenotype</span>(*<span class="object">genotype</span>);
 }
 </pre>
@@ -193,7 +193,7 @@
 <h2>Placing an Offspring in the Population</h2>
 
 <p>
-When an organism gives birth, we must collect some relevent statistics,
+When an organism gives birth, we must collect some relevant statistics,
 which can best be accomplished in the population object.  Then we must
 place the offspring into its own cell in the population.  This is all done
 with the <span class="class">cPopulation</span>::<span class="method">ActivateOffspring</span>
@@ -203,7 +203,7 @@
 code in <kbd>cPopulation.cc</kbd> while reading the remainder of this section.
 </p>
 <p>
-The first step in activing an offspring involves performing some book keeping
+The first step in activating an offspring involves performing some book keeping
 on the parent's phenotype via the <span class="method">DivideReset</span>()
 method. After this, the child genome is submitted to the birth chamber.  The
 birth chamber is responsible for handling the details of reproduction, such as

Modified: development/documentation/cpu_tour.html
===================================================================
--- development/documentation/cpu_tour.html	2009-03-20 02:31:37 UTC (rev 3193)
+++ development/documentation/cpu_tour.html	2009-03-20 17:56:46 UTC (rev 3194)
@@ -40,7 +40,7 @@
     operated upon by the various instructions, and can contain arbitrary
     32-bit integers.</li>
 <li>Two <strong style="color: #008800">stacks</strong> that are used for storage.
-    The organism can theoretical store an arbitrary amount of data in the
+    The organism can theoretically store an arbitrary amount of data in the
     stacks, but for practical purposes we currently limit the maximum stack
     depth to ten.</li>
 <li>An <strong style="color: #CCCC00">input buffer</strong> and an

Modified: development/documentation/environment.html
===================================================================
--- development/documentation/environment.html	2009-03-20 02:31:37 UTC (rev 3193)
+++ development/documentation/environment.html	2009-03-20 17:56:46 UTC (rev 3194)
@@ -603,7 +603,7 @@
 <tr>
   <td class="resall">inst</td>
   <td>
-    The instruction that gets executed when this reaction gets preformed. If 
+    The instruction that gets executed when this reaction gets performed. If 
     you do not want an organism to be able to have the instruction in their
     genome, you still must put it in the instruction set file, but set its weight
     to zero. The instruction is executed at no cost to the organism.
@@ -734,7 +734,7 @@
 
 <p>
 No RESOURCE statements need be included since only the infinite resource is
-used (by default, since we don't specify another resources' name)
+used (by default, since we don't specify another resource's name)
 # To create an environment with two resources that are converted back and
 forth as tasks are performed, we might have:
 <pre>
@@ -842,7 +842,7 @@
 </Blockquote>
 <p>
 <H3>MUTATION Command</H3>
-O.K. I don't know what the following commands does, but it is in the code:
+O.K. I don't know what the following command does, but it is in the code:
 </P>
 <pre>
   <a name="MUTATION">MUTATION</a> name trigger scope type rate

Modified: development/documentation/structure.html
===================================================================
--- development/documentation/structure.html	2009-03-20 02:31:37 UTC (rev 3193)
+++ development/documentation/structure.html	2009-03-20 17:56:46 UTC (rev 3194)
@@ -200,7 +200,7 @@
 <dd>
 Contains various source files that define action classes that are
 usable as schedule events and analyze commands.  Also contains
-the cActionLibrary responsible for instiating objects based on
+the cActionLibrary responsible for instantiating objects based on
 cString names.
 </dd>
 <dt><kbd style="color: #008844">analyze/</kbd></dt>




More information about the Avida-cvs mailing list