Skip to content

Commit

Permalink
fix: replace '|' with 'or'
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-senger committed Jun 29, 2024
1 parent 43359fc commit e1326f0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/resources/builtins/parameters/arbeitslosengeld2.ttsl
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public const anrechnungsfreieEinkommensanteileFallsKinder: Dict<Date, Dict<Int,
* S.
* 3159.
*/
public const regelsatz: Int | Dict<Int, Int> {
public const regelsatz: Int or Dict<Int, Int> {
from 2005-01-01 = {
scalar: 338,
reference: "Artikel 1 G. v. 24.12.2003 BGBl. I S. 2954.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public const vorsorge2004Grundhoechstbetrag: Int {
* haben, maximal den gleichen Altersentlastungsbetrag. Ab 2005 hängt dieser Betrag,
* den diese Steuerpflichtigen erhalten, vom Geburtsjahr ab.
*/
public const altersentlastungsbetragMax: Int | Dict<Int, Int> {
public const altersentlastungsbetragMax: Int or Dict<Int, Int> {
from 1984-01-01 = 1534
from 1989-01-01 = 1902
from 2002-01-01 = 1908
Expand Down Expand Up @@ -291,7 +291,7 @@ public const altersentlastungsbetragMax: Int | Dict<Int, Int> {
* haben, die gleiche Altersentlastungsquote abgezogen. Ab 2005 hängt diese Quote,
* den diese Steuerpflichtigen erhalten, vom Geburtsjahr ab.
*/
public const altersentlastungQuote: Float | Dict<Int, Float> {
public const altersentlastungQuote: Float or Dict<Int, Float> {
from 1984-01-01 = 0.4

# Reference: Artikel 1 G. v. 05.07.2004 BGBl. I S. 1427.
Expand Down
4 changes: 2 additions & 2 deletions src/resources/builtins/parameters/gesetzlicheRente.ttsl
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ public const renteFrauenPflichtbeitrag: Int {
* bezogen werden kann.
* Reference: § 237 SGB VI
*/
public const altersgrenzeArbeitslosigkeitAbschlagsfrei: Float | Dict<Int, Dict<String, Float | Dict<Int, Float>> {
public const altersgrenzeArbeitslosigkeitAbschlagsfrei: Float or Dict<Int, Dict<String, Float or Dict<Int, Float>> {
from 1980-01-01 = {
0: {
scalar: 60.0,
Expand Down Expand Up @@ -1305,7 +1305,7 @@ public const altersgrenzeArbeitslosigkeitAbschlagsfrei: Float | Dict<Int, Dict<S
* bezogen werden kann (mit Abschlägen), einschließlich Vertrauensschutz.
* Reference: § 237 SGB VI
*/
public const altersgrenzeArbeitslosigkeitVorzeitig: Float | Dict<Int, Dict<Int, Float>>{
public const altersgrenzeArbeitslosigkeitVorzeitig: Float or Dict<Int, Dict<Int, Float>>{
from 1980-01-01 = 60.0

# Increase of early retirement age from 60 to 62 for birth cohort 1949-1952.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package sozialversicherungsbeitrag
*
* access_different_date: jahresanfang
*/
public const beitragssatz: Dict<String, String | Dict<String, Float>> {
public const beitragssatz: Dict<String, String or Dict<String, Float>> {
from 1984-01-01 {
gesetzlicheKrankenversicherung: {
mean_allgemein: 0.134
Expand Down Expand Up @@ -1035,7 +1035,7 @@ public const mindestanteilBezugsgroeßeBeitragspflichtigeEinnahmeSelbst: Float {
* Gleitzone (Midijob Grenze) und Minijob Grenze (bis 1999 unterschiedliche Grenzen)
* Reference: Midijob § 20 (2) SGB IV, Minijob § 8 (1) Nr. 1 SGB IV
*/
public const geringfuegigeEinkommensgrenzenMonatlich: Dict<String, Int | Dict<String, Int>> {
public const geringfuegigeEinkommensgrenzenMonatlich: Dict<String, Int or Dict<String, Int>> {
from 1984-01-01 {
minijob: {
west: 199
Expand Down
10 changes: 5 additions & 5 deletions src/resources/builtins/parameters/wohngeld.ttsl
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ public const freibetragKinder: Dict<String, Int> {
* vorliegen. Dies ist aktuell nicht implementiert. § 17 Nr. 1 WoGG. (früher § 17 (2)
* WoGG)
*/
public const freibetragBehinderung: Dict<Int, Int> | Int {
public const freibetragBehinderung: Dict<Int, Int> or Int {
from 1984-01-01 = {
0: 0,
1: 0,
Expand Down Expand Up @@ -942,7 +942,7 @@ public const behinderungsgrad: Dict<Int, Int> {
* Die Werte sind nach Anzahl Personen - maximales Baujahr des Hauses (vor 2009) -
* Mietstufe geordnet. Alle Werte in vollen Euro.
*/
public const maxMiete: Dict<Int | String, Dict<Int, Dict<Int, Int>>> {
public const maxMiete: Dict<Int or String, Dict<Int, Dict<Int, Int>>> {
# Reference: Art. 1 G. v. 04.08.1980 BGBl I S. 1159.
# Bis 1985 nur drei Mietstufen, streng abhängig von der Größe der Gemeinde. Es wird "Wohnung mit Sammelheizung und mit Bad oder Duschraum" angenommen.
from 1981-01-01 = {
Expand Down Expand Up @@ -2262,7 +2262,7 @@ public const vermoegensfreibetragPerson: Float {
* Reference: §12 (6) WoGG, Art. 1 G. v. 15.05.2020, BGBl I S. 1015.
* per month
*/
public const heizkostenentlastung: Dict<Int | String, Float> {
public const heizkostenentlastung: Dict<Int or String, Float> {
from 2021-01-01 {
1: 14.4,
2: 18.6,
Expand All @@ -2280,7 +2280,7 @@ public const heizkostenentlastung: Dict<Int | String, Float> {
* Reference: Art. 1 G. v. 08.12.2022 BGBl. I Nr. 48 S. 2160
* per month
*/
public const dauerhafteHeizkostenkomponente: Dict<Int | String, Int> {
public const dauerhafteHeizkostenkomponente: Dict<Int or String, Int> {
from 2023-01-01 {
1: 96,
2: 124,
Expand All @@ -2298,7 +2298,7 @@ public const dauerhafteHeizkostenkomponente: Dict<Int | String, Int> {
* Reference: Art. 1 G. v. 08.12.2022 BGBl. I Nr. 48 S. 2160
* per month
*/
public const klimakomponente: Dict<Int | String, Float> {
public const klimakomponente: Dict<Int or String, Float> {
from 2023-01-01 = {
1: 19.20,
2: 24.80,
Expand Down

0 comments on commit e1326f0

Please sign in to comment.