spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CJSX invalid comment block

alihammad-gist opened this issue · comments

Adds '###' at the end of the comment block instead of '*/'

/**
 * [_moveItem description]
 * @param  {[type]} idx  [description]
 * @param  {[type]} src  [description]
 * @param  {[type]} targ [description]
 * @return {[type]}      [description]
###
_moveItem = (idx, src, targ) ->
    item = _items[src].splice(idx, 1)
    _items[targ].push item