Skip to content

Commit

Permalink
Minor JavaDoc corrections for JewishCalendar.java
Browse files Browse the repository at this point in the history
  • Loading branch information
KosherJava committed Oct 23, 2018
1 parent 3d1ab37 commit 1c3173d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/sourceforge/zmanim/hebrewcalendar/JewishCalendar.java
Expand Up @@ -404,7 +404,7 @@ public boolean isAssurBemelacha(){
/**
* Returns true if the day has candle lighting. This will return true on erev <em>Shabbos</em>, erev <em>Yom Tov</em>, the
* first day of <em>Rosh Hashana</em> and the first days of <em>Yom Tov</em> out of Israel. It is identical
* to calling {@link isTomorrowYomTov()}.
* to calling {@link isTomorrowShabbosOrYomTov()}.
*
* @return if the day has candle lighting
*/
Expand All @@ -416,7 +416,7 @@ public boolean hasCandleLighting() {
* Returns true if tomorrow is <em>Shabbos</em> or <em>Yom Tov</em>. This will return true on erev <em>Shabbos</em>, erev
* <em>Yom Tov</em>, the first day of <em>Rosh Hashana</em> and <em>erev</em> the first days of <em>Yom Tov</em> out of
* Israel. It is identical to calling {@link hasCandleLighting()}.
* @return
* @return will return if the next day is <em>Shabbos</em> or <em>Yom Tov</em>
*/
public boolean isTomorrowShabbosOrYomTov() {
return getDayOfWeek() == 6 || isErevYomTov() || isErevYomTovSheni();
Expand Down

0 comments on commit 1c3173d

Please sign in to comment.