Skip to content

Commit

Permalink
dojox/collections: fix api doc formatting, refs #13101 !strict
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.dojotoolkit.org/src/dojox/trunk@29013 560b804f-0ae3-0310-86f3-f6aa0a117693
  • Loading branch information
wkeese committed Jun 24, 2012
1 parent bd57488 commit 4a79424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions collections/SortedList.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@ 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
}
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();
Expand Down

0 comments on commit 4a79424

Please sign in to comment.