module Comment

Public Class Methods

comment(text, comment_tokens) click to toggle source
# File lib/comment.rb, line 30
def Comment.comment(text, comment_tokens)
        comment_tokens.is_a?(String) ? simple_comment(text, comment_tokens) : complex_comment(text, comment_tokens)
end