Fix improper date reference in blog reader. am: 2732bb762a am: 0f6d425804
am: 53cd365b2d

* commit '53cd365b2d2c2b074d628147a8a382275075bd1d':
  Fix improper date reference in blog reader.

Change-Id: I300892c3c4439354917872839c18e4c029160df1
diff --git a/tools/droiddoc/templates-sdk-dev/assets/js/docs.js b/tools/droiddoc/templates-sdk-dev/assets/js/docs.js
index 9afed71..efcc363 100644
--- a/tools/droiddoc/templates-sdk-dev/assets/js/docs.js
+++ b/tools/droiddoc/templates-sdk-dev/assets/js/docs.js
@@ -2146,7 +2146,7 @@
 
     BlogReader.prototype.openModal_ = function(blog, post) {
       var published = new Date(post.published);
-      var formattedDate = monthNames[published.getMonth()] + ' ' + published.getDay() + ' ' + published.getFullYear();
+      var formattedDate = monthNames[published.getMonth()] + ' ' + published.getDate() + ' ' + published.getFullYear();
       this.blogReader.find('.dac-modal-header-open').attr('href', post.url);
       this.blogReader.find('.dac-modal-header-title').text(blog.title);
       this.blogReader.find('.dac-blog-reader-title').html(post.title);