From 4a79424a79f3e52a002e4cc21c3e1c34bbff4bd5 Mon Sep 17 00:00:00 2001 From: Bill Keese Date: Sun, 24 Jun 2012 03:28:21 +0000 Subject: [PATCH] dojox/collections: fix api doc formatting, refs #13101 !strict git-svn-id: http://svn.dojotoolkit.org/src/dojox/trunk@29013 560b804f-0ae3-0310-86f3-f6aa0a117693 --- collections/SortedList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();