nashorn/samples/MissingMethodExample.java
changeset 34548 44779bfb4c13
parent 34457 81a65a2faef3
--- a/nashorn/samples/MissingMethodExample.java	Thu Dec 03 19:04:39 2015 +0530
+++ b/nashorn/samples/MissingMethodExample.java	Tue Dec 08 17:16:10 2015 +0530
@@ -38,7 +38,7 @@
 
     @Override
     public Object doesNotUnderstand(String name, Object... args) {
-        // This dummy doesNotUnderstand just prints method name and args.
+        // This simple doesNotUnderstand just prints method name and args.
         // You can put useful method routing logic here.
         System.out.println("you called " + name);
         if (args.length != 0) {