Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Elyahu41 committed Mar 15, 2024
1 parent 06104ea commit 3ee0b74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion KosherSwiftNew.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "KosherSwiftNew"
spec.version = "1.0.4"
spec.version = "1.0.5"
spec.summary = "KosherJava Zmanim API / Library ported to Swift."

spec.description = "This Zmanim library is an API for a specialized calendar that can calculate different astronomical times including sunrise and sunset and Jewish zmanim or religious times for prayers and other Jewish religious duties.
Expand Down
14 changes: 7 additions & 7 deletions Sources/KosherSwift/hebrewcalendar/HebrewDateFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -297,29 +297,29 @@ public class HebrewDateFormatter {
* The <a href="https://en.wikipedia.org/wiki/Geresh#Punctuation_mark">gersh</a> character is the &#x05F3; char
* that is similar to a single quote and is used in formatting Hebrew numbers.
*/
private static let GERESH = "\u{05F3}";
private static let GERESH = "׳";

/**
* The <a href="https://en.wikipedia.org/wiki/Gershayim#Punctuation_mark">gershyim</a> character is the &#x05F4; char
* that is similar to a double quote and is used in formatting Hebrew numbers.
*/
private static let GERSHAYIM = "\u{05F4}";
private static let GERSHAYIM = "״";

/**
* Transliterated month names. Defaults to ["Nissan", "Iyar", "Sivan", "Tammuz", "Av", "Elul", "Tishrei", "Cheshvan",
* "Kislev", "Teves", "Shevat", "Adar", "Adar II", "Adar I" ].
* @see #getTransliteratedMonthList()
* @see #setTransliteratedMonthList(String[])
*/
public var transliteratedMonths = [ "Tishrei", "Cheshvan", "Kislev", "Teves", "Shevat", "Adar", "Adar II", "Nissan", "Iyar", "Sivan", "Tammuz", "Av", "Elul" , "Adar I"];
public var transliteratedMonths = ["Tishrei", "Cheshvan", "Kislev", "Teves", "Shevat", "Adar", "Adar II", "Nissan", "Iyar", "Sivan", "Tammuz", "Av", "Elul" , "Adar I"];

/**
* The Hebrew omer prefix charachter. It defaults to &#x05D1; producing &#x05D1;&#x05E2;&#x05D5;&#x05DE;&#x05E8;,
* but can be set to &#x05DC; to produce &#x05DC;&#x05E2;&#x05D5;&#x05DE;&#x05E8; (or any other prefix).
* @see #getHebrewOmerPrefix()
* @see #setHebrewOmerPrefix(String)
*/
public var hebrewOmerPrefix = "\u{05D1}";
public var hebrewOmerPrefix = "ב";

/**
* The default value for formatting Shabbos (Saturday). Defaults to Shabbos.
Expand Down Expand Up @@ -438,8 +438,8 @@ public class HebrewDateFormatter {
"צום גדליה", "ערב יום כיפור", "יום כיפור", "ערב סוכות", "סוכות",
"חול המועד סוכות", "הושענא רבה", "שמיני עצרת", "שמחת תורה", "ערב חנוכה",
"חנוכה", "עשרה בטבת", "ט\"ו בשבט", "תענית אסתר", "פורים",
"פורים שושן", "פורים קטן", "ראש חודש", "יום השואה", "יום הזיכרון",
"יום העצמאות", "יום ירושלים", "ל\"ג בעומר", "פורים שושן קטן", "אסרו חג"
"שושן פורים", "פורים קטן", "ראש חודש", "יום השואה", "יום הזיכרון",
"יום העצמאות", "יום ירושלים", "ל\"ג בעומר", "שושן פורים קטן", "אסרו חג"
];


Expand Down Expand Up @@ -607,7 +607,7 @@ public class HebrewDateFormatter {
"אדר ב",
"ניסן",
"אייר",
"סיוון",
"סיון",
"תמוז",
"אב",
"אלול",
Expand Down

0 comments on commit 3ee0b74

Please sign in to comment.