Method: ActiveRecall::LeitnerSystem#wrong

Defined in:
lib/active_recall/algorithms/leitner_system.rb

#wrongObject



48
49
50
51
52
53
54
55
56
# File 'lib/active_recall/algorithms/leitner_system.rb', line 48

def wrong
  {
    box: 0,
    times_right: times_right,
    times_wrong: times_wrong + 1,
    last_reviewed: current_time,
    next_review: nil
  }
end