Merge branch 'master' of https://github.com/roojs/roojs1 into github
[roojs1] / Date.js
diff --git a/Date.js b/Date.js
index 7c5418b..365334d 100644 (file)
--- a/Date.js
+++ b/Date.js
@@ -255,8 +255,9 @@ Date.parseDate = function(input, format) {
     var func = Date.parseFunctions[format];
     return Date[func](input);
 };
-
-// private
+/**
+ * @private
+ */
 Date.createParser = function(format) {
     var funcName = "parse" + Date.parseFunctions.count++;
     var regexNum = Date.parseRegexes.length;
@@ -312,7 +313,7 @@ Date.createParser = function(format) {
         + ";}";
 
     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
-     /** eval:var:zzzzzzzzzzzzz */
+    /** eval:var:zzzzzzzzzzzzz */
     eval(code);
 };