You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by mb...@apache.org on 2008/05/07 10:27:15 UTC

svn commit: r654030 - in /incubator/uima/site/trunk/uima-website: docs/doc-uima-annotator.html xdocs/doc-uima-annotator.xml

Author: mbaessler
Date: Wed May  7 01:27:15 2008
New Revision: 654030

URL: http://svn.apache.org/viewvc?rev=654030&view=rev
Log:
UIMA-1013

fix some spellings

https://issues.apache.org/jira/browse/UIMA-1013

Modified:
    incubator/uima/site/trunk/uima-website/docs/doc-uima-annotator.html
    incubator/uima/site/trunk/uima-website/xdocs/doc-uima-annotator.xml

Modified: incubator/uima/site/trunk/uima-website/docs/doc-uima-annotator.html
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/docs/doc-uima-annotator.html?rev=654030&r1=654029&r2=654030&view=diff
==============================================================================
--- incubator/uima/site/trunk/uima-website/docs/doc-uima-annotator.html (original)
+++ incubator/uima/site/trunk/uima-website/docs/doc-uima-annotator.html Wed May  7 01:27:15 2008
@@ -333,9 +333,9 @@
 				      <p>This creates a new skeleton descriptor file and opens it in the UIMA Component Descriptor Editor plugin.
 				         For now, we just add the Java class name we will use later to implement the 
 				         annotator. Use "org.apache.uima.tutorial.ex1.RoomNumberAnnotator" as Java class name.
-                Select File -&gt; Save or push ctrl-s to save this descriptor.  A warning/error message
+                Select "File -&gt; Save" or push "CTRL-S" to save this descriptor.  A warning/error message
                 will appear saying that the classname you entered isn't found - that's true because
-                you haven't defined it yet, so just say ok and proceed.  The Component Descriptor Editor
+                we haven't defined it yet, so just say OK and proceed.  The Component Descriptor Editor
                 has many checks like this and will alert you if it finds things wrong, but it always
                 will let you save your work, anyway.
 					  </p>
@@ -346,7 +346,7 @@
 				  </ol>
 				</p>
                                                 <p>
-				  Next, wel define the output types that
+				  Next, we will define the output types that
 				  the annotator produces. We have to do this before we start implementing the 
 				  annotator code since we will use the definitions later in our implementation.
 				</p>
@@ -375,14 +375,14 @@
 				  will use for the RoomNumberAnnotator. The annotator will detect room numbers, so we will create 
 				  an annotation type called <code>org.apache.uima.tutorial.RoomNumber</code> that is inherited from
 				  <code>uima.tcas.Annotation</code>. Additionally we want to store some meta information 
-				  about the room we detected, therefor we will add a feature to the annotation 
+				  about the room we detected, therefore we will add a feature to the annotation 
 				  called <code>building</code> that will contain some additional building information about the 
 				  detected room.
 				</p>
                                                 <p>
           You might be wondering about the prefix, "org.apache.uima.tutorial" in front of "RoomNumber".
           This is the "namespace" - something you would choose to help insure that your use of the
-          name RoomNumber doesn't collide accidently with someone elses use of that name.  These
+          name RoomNumber doesn't collide accidently with someone else use of that name.  These
           namespaces work like Java namespaces.
         </p>
                                                 <p>

Modified: incubator/uima/site/trunk/uima-website/xdocs/doc-uima-annotator.xml
URL: http://svn.apache.org/viewvc/incubator/uima/site/trunk/uima-website/xdocs/doc-uima-annotator.xml?rev=654030&r1=654029&r2=654030&view=diff
==============================================================================
--- incubator/uima/site/trunk/uima-website/xdocs/doc-uima-annotator.xml (original)
+++ incubator/uima/site/trunk/uima-website/xdocs/doc-uima-annotator.xml Wed May  7 01:27:15 2008
@@ -162,9 +162,9 @@
 				      <p>This creates a new skeleton descriptor file and opens it in the UIMA Component Descriptor Editor plugin.
 				         For now, we just add the Java class name we will use later to implement the 
 				         annotator. Use "org.apache.uima.tutorial.ex1.RoomNumberAnnotator" as Java class name.
-                Select File -> Save or push ctrl-s to save this descriptor.  A warning/error message
+                Select "File -> Save" or push "CTRL-S" to save this descriptor.  A warning/error message
                 will appear saying that the classname you entered isn't found - that's true because
-                you haven't defined it yet, so just say ok and proceed.  The Component Descriptor Editor
+                we haven't defined it yet, so just say OK and proceed.  The Component Descriptor Editor
                 has many checks like this and will alert you if it finds things wrong, but it always
                 will let you save your work, anyway.
 					  </p>
@@ -175,7 +175,7 @@
 				  </ol>
 				</p>
 				<p>
-				  Next, wel define the output types that
+				  Next, we will define the output types that
 				  the annotator produces. We have to do this before we start implementing the 
 				  annotator code since we will use the definitions later in our implementation.
 				</p>
@@ -205,14 +205,14 @@
 				  will use for the RoomNumberAnnotator. The annotator will detect room numbers, so we will create 
 				  an annotation type called <code>org.apache.uima.tutorial.RoomNumber</code> that is inherited from
 				  <code>uima.tcas.Annotation</code>. Additionally we want to store some meta information 
-				  about the room we detected, therefor we will add a feature to the annotation 
+				  about the room we detected, therefore we will add a feature to the annotation 
 				  called <code>building</code> that will contain some additional building information about the 
 				  detected room.
 				</p>
         <p>
           You might be wondering about the prefix, "org.apache.uima.tutorial" in front of "RoomNumber".
           This is the "namespace" - something you would choose to help insure that your use of the
-          name RoomNumber doesn't collide accidently with someone elses use of that name.  These
+          name RoomNumber doesn't collide accidently with someone else use of that name.  These
           namespaces work like Java namespaces.
         </p>
 				<p>