Skip to content

Commit

Permalink
Fix some const-ness
Browse files Browse the repository at this point in the history
  • Loading branch information
mjradwin committed Oct 20, 2024
1 parent 8d60354 commit 42fcbaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/DafPageEvent.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Event, HDate } from '@hebcal/core';
import { DafPage } from './DafPage';

export const dafYomiSefaria: {[key: string]: string} = {
const dafYomiSefaria: {[key: string]: string} = {
'Berachot': 'Berakhot',
'Rosh Hashana': 'Rosh Hashanah',
'Gitin': 'Gittin',
Expand All @@ -12,7 +12,7 @@ export const dafYomiSefaria: {[key: string]: string} = {
'Arachin': 'Arakhin',
'Midot': 'Middot',
'Shekalim': 'Jerusalem_Talmud_Shekalim',
};
} as const;

/**
* Event wrapper around a DafPage instance
Expand Down
4 changes: 2 additions & 2 deletions src/yerushalmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const vilna = {
['Horayot', 19],
['Niddah', 13],
],
};
} as const;

const schottensteinStartDate = new Date(2022, 10, 14);
/**
Expand Down Expand Up @@ -110,7 +110,7 @@ export const schottenstein = {
['Horayot', 18],
['Niddah', 11],
],
};
} as const;

const SUN = 0;
const SAT = 6;
Expand Down

0 comments on commit 42fcbaa

Please sign in to comment.