Skip to content

Conversation

@Eoksni
Copy link

@Eoksni Eoksni commented Jun 26, 2019

Closes #35.

Example usage:

/**
 * @example
 *   subtract(1, 2)
 *   // => {
 *   // =>   normal: -1,
 *   // =>   reverse: 1
 *   // => }
 */

 function subtract(x, y) {
  return {
    normal: x - y,
    reverse: y - x
  };
}

@coveralls
Copy link

Coverage Status

Coverage remained the same at 76.963% when pulling 2b57ab9 on Eoksni:develop into ccd6cdb on yamadapc:master.


for(var i = 0, len = parsedComments.length; i < len; i++) {
if(parsedComments[i].type === 'code') {
if(parsedComments[i].type === 'code' && parsedComments[i].string) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really understand. It was already supported then, but missing some error handling?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Feature Request: Multiline support

3 participants