diff --git a/collections/SortedList.js b/collections/SortedList.js index b98a93c8ca..9fc9afcd60 100644 --- a/collections/SortedList.js +++ b/collections/SortedList.js @@ -140,7 +140,7 @@ define(["dojo/_base/kernel", "dojo/_base/array", "./_base"], function(dojo, darr return -1; // int }; this.item=function(/*string*/ k){ - // summary + // summary: // return the value of the object at location k. if(k in items && !testObject[k]){ return items[k].valueOf(); // object @@ -148,7 +148,7 @@ define(["dojo/_base/kernel", "dojo/_base/array", "./_base"], function(dojo, darr return undefined; // object }; this.remove=function(/*string*/ k){ - // summary + // summary: // remove the item at location k and rebuild the internal collections. delete items[k]; build();