Revision: 4815
          http://sourceforge.net/p/vexi/code/4815
Author:   clrg
Date:     2015-10-05 11:44:39 +0000 (Mon, 05 Oct 2015)
Log Message:
-----------
Trivial. Spelling correction.

Modified Paths:
--------------
    
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JS.jpp
    
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSArray.jpp
    
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSDate.jpp
    
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSInstant.jpp

Modified: 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JS.jpp
===================================================================
--- 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JS.jpp
        2015-09-12 20:20:45 UTC (rev 4814)
+++ 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JS.jpp
        2015-10-05 11:44:39 UTC (rev 4815)
@@ -381,7 +381,7 @@
         public boolean isTruthy() { return true; }
         public boolean instanceOf(JS constructor) { return false; } 
         public void addConstructor(JS constructor) throws JSExn {
-            throw new JSExn("Attemted to add constructor to immutable");
+            throw new JSExn("Attempted to add constructor to immutable");
         }
         
         /** <p>Returns ClassName$xxxxxxxx where xxxxxxxx is the hashcode in 
hex.</p> 

Modified: 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSArray.jpp
===================================================================
--- 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSArray.jpp
   2015-09-12 20:20:45 UTC (rev 4814)
+++ 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSArray.jpp
   2015-10-05 11:44:39 UTC (rev 4815)
@@ -197,7 +197,7 @@
     public int callType(){ return CALLTYPE_METHOD; }
     public String coerceToString() { return "array$" + 
Integer.toHexString(hashCode()); }
     public boolean instanceOf(JS constructor){ return 
constructor==Constructor; }
-    public void addConstructor(JS constructor) throws JSExn {throw new 
JSExn("Attemted to add constructor to array"); }
+    public void addConstructor(JS constructor) throws JSExn { throw new 
JSExn("Attempted to add constructor to array"); }
     public JS new_(JS[] args) throws JSExn { throw new JSExn(type() +" is not 
a constructor"); }
     public JS apply(JS target, JS[] args) throws JSExn { throw new 
JSExn("Cannot call a " + type()); }
     public JS callMethod(JS this_, JS method, JS[] args) throws JSExn {

Modified: 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSDate.jpp
===================================================================
--- 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSDate.jpp
    2015-09-12 20:20:45 UTC (rev 4814)
+++ 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSDate.jpp
    2015-10-05 11:44:39 UTC (rev 4815)
@@ -122,7 +122,7 @@
 
     };
     public boolean instanceOf(JS constructor) { return 
constructor==Constructor; }
-    public void addConstructor(JS constructor) throws JSExn {throw new 
JSExn("Attemted to add constructor to date"); }
+    public void addConstructor(JS constructor) throws JSExn {throw new 
JSExn("Attempted to add constructor to date"); }
 
 
     final public Date date;

Modified: 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSInstant.jpp
===================================================================
--- 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSInstant.jpp
 2015-09-12 20:20:45 UTC (rev 4814)
+++ 
branches/vexi3_integrated_layout/org.vexi-library.js/src/main/jpp/org/ibex/js/JSInstant.jpp
 2015-10-05 11:44:39 UTC (rev 4815)
@@ -103,7 +103,7 @@
 
     };
     public boolean instanceOf(JS constructor) { return 
constructor==Constructor; }
-    public void addConstructor(JS constructor) throws JSExn {throw new 
JSExn("Attemted to add constructor to date"); }
+    public void addConstructor(JS constructor) throws JSExn {throw new 
JSExn("Attempted to add constructor to date"); }
 
 
     final public Instant instant;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to