lib/standup_md/entry.rb in standup_md-0.3.8 vs lib/standup_md/entry.rb in standup_md-0.3.9

- old
+ new

@@ -78,14 +78,14 @@ # @param [Array] notes def initialize(date, current, previous, impediments, notes = []) raise unless date.is_a?(Date) @config = self.class.config - @date = date - @current = current - @previous = previous - @impediments = impediments - @notes = notes + @date = date + @current = current + @previous = previous + @impediments = impediments + @notes = notes end ## # Sorting method for Comparable. Entries are compared by date. def <=>(other)