From 6d2a2e7897c05ea5107c3a84b438714c6d4bc73c Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Thu, 26 Jul 2012 09:27:40 +0000 Subject: [PATCH] adding missing API doc types, refs #13101 !strict git-svn-id: http://svn.dojotoolkit.org/src/dojo/trunk@29389 560b804f-0ae3-0310-86f3-f6aa0a117693 --- _base/lang.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_base/lang.js b/_base/lang.js index a0cf73dbb5..48a9c43c72 100644 --- a/_base/lang.js +++ b/_base/lang.js @@ -458,6 +458,8 @@ define(["./kernel", "../has", "../sniff"], function(dojo, has){ // description: // Calling lang.partial is the functional equivalent of calling: // | lang.hitch(null, funcName, ...); + // method: + // The function to "wrap" var arr = [ null ]; return lang.hitch.apply(dojo, arr.concat(lang._toArray(arguments))); // Function },