From f530c6d85208a2a880c3b5fed0ee9d70db57a60f Mon Sep 17 00:00:00 2001 From: RumovZ Date: Tue, 30 Mar 2021 21:40:35 +0200 Subject: [PATCH] Fix comment typo --- rslib/src/browser_table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rslib/src/browser_table.rs b/rslib/src/browser_table.rs index 9f83258d7..3c3a1c594 100644 --- a/rslib/src/browser_table.rs +++ b/rslib/src/browser_table.rs @@ -171,7 +171,7 @@ impl Card { (self.queue as i8) < 0 } - /// Returns true of the card has a due date in terms of days. + /// Returns true if the card has a due date in terms of days. fn is_due_in_days(&self) -> bool { matches!(self.queue, CardQueue::DayLearn | CardQueue::Review) || (self.ctype == CardType::Review && self.is_undue_queue())