From 6629a0f5380dfd6c7542fed5ded69511ebf9c781 Mon Sep 17 00:00:00 2001 From: KosherJava Date: Sun, 4 Aug 2024 11:54:30 -0400 Subject: [PATCH] Minor JavaDoc correction in JewishDate (molad param had tags) --- .../com/kosherjava/zmanim/hebrewcalendar/JewishDate.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/kosherjava/zmanim/hebrewcalendar/JewishDate.java b/src/main/java/com/kosherjava/zmanim/hebrewcalendar/JewishDate.java index 673b28d6..eb47d309 100644 --- a/src/main/java/com/kosherjava/zmanim/hebrewcalendar/JewishDate.java +++ b/src/main/java/com/kosherjava/zmanim/hebrewcalendar/JewishDate.java @@ -582,7 +582,7 @@ private static int getJewishMonthOfYear(int year, int month) { * if a Jewish date earlier than 18 Teves, 3761 (1/1/1 Gregorian), a month < 1 or > 12 (or 13 on a leap year), * the day of month is < 1 or > 30, an hour < 0 or > 23, a minute < 0 or > 59 or chalakim * < 0 or > 17. For larger a larger number of chalakim such as 793 (TaShTzaG) break the - * chalakim into minutes (18 chalakim per minutes, so it would be 44 minutes and 1 chelek + * chalakim into minutes (18 chalakim per minutes, so it would be 44 minutes and 1 chelek * in the case of 793 (TaShTzaG). */ private static void validateJewishDate(int year, int month, int dayOfMonth, int hours, int minutes, int chalakim) { @@ -834,8 +834,8 @@ private void absDateToJewishDate() { * @param year * the Jewish year. The year can't be negative * @param month - * the Jewish month starting with Nissan. Nissan expects a value of 1 etc till Adar with a value of 12. For - * a leap year, 13 will be the expected value for Adar II. Use the constants {@link JewishDate#NISSAN} + * the Jewish month starting with Nissan. Nissan expects a value of 1 etc. until Adar with a value of 12. + * For a leap year, 13 will be the expected value for Adar II. Use the constants {@link JewishDate#NISSAN} * etc. * @param dayOfMonth * the Jewish day of month. valid values are 1-30. If the day of month is set to 30 for a month that only @@ -884,7 +884,7 @@ private static int moladToAbsDate(long chalakim) { * Monday, Ha = 5 hours and RaD = 204 chalakim / parts) - prior to the start of the Jewish * calendar. BeHaRaD is 23:11:20 on Sunday night(5 hours 204/1080 chalakim after sunset on Sunday evening). * - * @param molad the number of chalakim since the beginning of Sunday prior to BaHaRaD + * @param molad the number of chalakim since the beginning of Sunday prior to BaHaRaD */ public JewishDate(long molad) { absDateToDate(moladToAbsDate(molad));