From 1c3173db66cff45f7f03d7340aad6fa42658bd7c Mon Sep 17 00:00:00 2001 From: KosherJava Date: Tue, 23 Oct 2018 17:22:55 -0400 Subject: [PATCH] Minor JavaDoc corrections for JewishCalendar.java --- src/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.java b/src/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.java index c1b2b2d8..1231f140 100644 --- a/src/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.java +++ b/src/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.java @@ -404,7 +404,7 @@ public boolean isAssurBemelacha(){ /** * Returns true if the day has candle lighting. This will return true on erev Shabbos, erev Yom Tov, the * first day of Rosh Hashana and the first days of Yom Tov out of Israel. It is identical - * to calling {@link isTomorrowYomTov()}. + * to calling {@link isTomorrowShabbosOrYomTov()}. * * @return if the day has candle lighting */ @@ -416,7 +416,7 @@ public boolean hasCandleLighting() { * Returns true if tomorrow is Shabbos or Yom Tov. This will return true on erev Shabbos, erev * Yom Tov, the first day of Rosh Hashana and erev the first days of Yom Tov out of * Israel. It is identical to calling {@link hasCandleLighting()}. - * @return + * @return will return if the next day is Shabbos or Yom Tov */ public boolean isTomorrowShabbosOrYomTov() { return getDayOfWeek() == 6 || isErevYomTov() || isErevYomTovSheni();