Revert "fix typo"

This reverts commit 0a8c41eaf0fb3bb89da878bb787ab173329b49f9.
This commit is contained in:
Jeff Williams 2014-12-21 09:48:45 -08:00
parent 0a8c41eaf0
commit c6855b5bfd

View File

@ -212,7 +212,7 @@ function hasJsdocComments(node) {
// TODO: docs // TODO: docs
function removeCommentDelimiters(comment) { function removeCommentDelimiters(comment) {
return comment.substr(2, comment.length - 2); return comment.substring(2, comment.length - 2);
} }
// TODO: docs // TODO: docs