Commit 28212013 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fixed handling of doc-comment lines without *-s.

parent 00099849
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ class DocComment
      elsif line =~ /^ *\* ?(.*)\Z/ then
        result << $1
      else
        result << line
        result << line.chomp
      end
    end
    return result.join("\n")
+3 −0
Original line number Diff line number Diff line
/**
 * Creates new DateRange
 * <pre>
2 * 8 = 16
 * </pre>
 * @param {Date} beginDate
 * @param {Date} endDate
 */