RESOLVED - bug 203778: Article on "Specifying Generics with UML Templates"
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203778
diff --git a/Article-Defining-Generics-with-UML-Templates/index.html b/Article-Defining-Generics-with-UML-Templates/index.html
index 0f488d1..f3c9866 100644
--- a/Article-Defining-Generics-with-UML-Templates/index.html
+++ b/Article-Defining-Generics-with-UML-Templates/index.html
@@ -299,7 +299,7 @@
 <p>In a little more realistic example, we might have something like
 the following.</p>
 <h3>Visually</h3>
-
+or
 <div class="figure-left"><img src="images/image012.png" />&nbsp;<img
 	src="images/image014.png" /></div>
 
@@ -307,7 +307,7 @@
 
 <div class="code-block">1 public interface List&lt;E&gt; extends EObject {
 2   void add(E x);
-3   Iterator<E> iterator();
+3   Iterator&lt;E&gt; iterator();
 4 } </div>
 
 <div class="code-block">1 public interface Iterator&lt;E&gt; extends EObject {