@@ -70,7 +70,7 @@ export class HDate {
70
70
* be a number between 1-30, Hebrew month can be a number or string, and
71
71
* Hebrew year is always a number.
72
72
* @example
73
- * import {HDate, months} from '@hebcal/core ';
73
+ * import {HDate, months} from '@hebcal/hdate ';
74
74
*
75
75
* const hd1 = new HDate();
76
76
* const hd2 = new HDate(new Date(2008, 10, 13));
@@ -231,7 +231,7 @@ export class HDate {
231
231
* Renders this Hebrew date as a translated or transliterated string,
232
232
* including ordinal e.g. `'15th of Cheshvan, 5769'`.
233
233
* @example
234
- * import {HDate, months} from '@hebcal/core ';
234
+ * import {HDate, months} from '@hebcal/hdate ';
235
235
*
236
236
* const hd = new HDate(15, months.CHESHVAN, 5769);
237
237
* console.log(hd.render('en')); // '15th of Cheshvan, 5769'
@@ -259,7 +259,7 @@ export class HDate {
259
259
/**
260
260
* Renders this Hebrew date in Hebrew gematriya, regardless of locale.
261
261
* @example
262
- * import {HDate, months} from '@hebcal/core ';
262
+ * import {HDate, months} from '@hebcal/hdate ';
263
263
* const hd = new HDate(15, months.CHESHVAN, 5769);
264
264
* console.log(hd.renderGematriya()); // 'ט״ו חֶשְׁוָן תשס״ט'
265
265
* @param {boolean } [suppressNikud]
@@ -410,7 +410,7 @@ export class HDate {
410
410
* | `month` | `M` | months |
411
411
* | `year` | `y` | years |
412
412
* @example
413
- * import {HDate, months} from '@hebcal/core ';
413
+ * import {HDate, months} from '@hebcal/hdate ';
414
414
*
415
415
* const hd1 = new HDate(15, months.CHESHVAN, 5769);
416
416
* const hd2 = hd1.add(1, 'weeks'); // 7 Kislev 5769
@@ -432,7 +432,7 @@ export class HDate {
432
432
*
433
433
* The result is zero if the two dates are identical.
434
434
* @example
435
- * import {HDate, months} from '@hebcal/core ';
435
+ * import {HDate, months} from '@hebcal/hdate ';
436
436
*
437
437
* const hd1 = new HDate(25, months.KISLEV, 5770);
438
438
* const hd2 = new HDate(15, months.CHESHVAN, 5769);
0 commit comments