--- a/ontology/ProvenanceFormalModel.html	Wed Jan 18 18:14:19 2012 +0000
+++ b/ontology/ProvenanceFormalModel.html	Wed Jan 18 21:19:44 2012 -0500
@@ -809,21 +809,21 @@
 
 
 		<section id="wascontrolledby">
-		  <h4>wasControlledBy</h4>
-	      <p>The wasControlledBy property links Activity class to Agent class, where control represents the involvement of the Agent in modifying the characteristics of the instance of the Activity class"[[PROV-DM]].</p>
+		  <h4>wasAssociatedWith</h4>
+	      <p>The wasAssociatedWith property links Agent class to Activity class, where association represents the involvement of the Agent in modifying the characteristics of the instance of the Activity class"[[PROV-DM]].</p>
           <img src="diagrams/wasControlledBy.png" 
                style="height: 3em" alt="wasControlledBy links Activity to Agent" />
 		  <div class="anexample">
 			  <div><b>Example</b></div>
-			  <p> Example of wasControlledBy property from the <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/#a-file-scenario"> provenance scenario </a> is <i>FileAppending</i> (Activity) <i>wasControlledBy Bob</i>. The RDF/XML syntax for asserting this is given below.		
+			  <p> Example of wasAssociatedWith property from the <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/#a-file-scenario"> provenance scenario </a> is <i>Bob wasAssociatedWith FileAppending</i> (Activity). The RDF/XML syntax for asserting this is given below.		
 			  <div class="exampleOuter">
 				<pre class="example">
-					<rdf:Description rdf:about="http://www.example.com/crimeFile#act1">
-					  <prov:wasControlledBy>
-						<rdf:Description rdf:about="http://www.example.com/crimeFile#Bob">
-						  <rdf:type rdf:resource="http://www.example.com/crime#Journalist"/>
+					<rdf:Description rdf:about="http://www.example.com/crimeFile#Bob">
+					  <prov:wasAssociatedWith>
+						<rdf:Description rdf:about="http://www.example.com/crimeFile#act1">
+						  <rdf:type rdf:resource="http://www.example.com/crime#FileAppending"/>
 						</rdf:Description>
-					  </prov:wasControlledBy>
+					  </prov:wasAssociatedWith>
 					</rdf:Description>	
 				</pre>
 			  </div>