Index: remoting/webapp/remoting.js |
diff --git a/remoting/webapp/remoting.js b/remoting/webapp/remoting.js |
index 188deb6c74f386ecdd73bec75e62c7682929a852..1737436254c1bf4d3c8a21695eda40699dd52a80 100644 |
--- a/remoting/webapp/remoting.js |
+++ b/remoting/webapp/remoting.js |
@@ -305,7 +305,9 @@ function jsonParseSafe(jsonString) { |
remoting.timestamp = function() { |
/** |
* @param {number} num A number. |
- * @return {string} The number, formatted as a string of the specified length. |
+ * @param {number} len The required length of the answer. |
+ * @return {string} The number, formatted as a string of the specified length |
+ * by prepending zeroes as necessary. |
*/ |
var pad = function(num, len) { |
var result = num.toString(); |