Skip to content

Commit e05b2ae

Browse files
ngeslinangularsen
authored andcommitted
Fix PerMinute abbreviations (#280)
Replaced */m by */min for : - ForceChangeRate - TemperatureChangeRate
1 parent a6cb704 commit e05b2ae

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

UnitsNet/GeneratedCode/UnitSystem.Default.g.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ private static readonly ReadOnlyCollection<UnitLocalization> DefaultLocalization
10191019
new CulturesForEnumValue((int) ForceChangeRateUnit.DecanewtonPerMinute,
10201020
new[]
10211021
{
1022-
new AbbreviationsForCulture("en-US", "daN/m"),
1022+
new AbbreviationsForCulture("en-US", "daN/min"),
10231023
}),
10241024
new CulturesForEnumValue((int) ForceChangeRateUnit.DecanewtonPerSecond,
10251025
new[]
@@ -1034,7 +1034,7 @@ private static readonly ReadOnlyCollection<UnitLocalization> DefaultLocalization
10341034
new CulturesForEnumValue((int) ForceChangeRateUnit.KilonewtonPerMinute,
10351035
new[]
10361036
{
1037-
new AbbreviationsForCulture("en-US", "kN/m"),
1037+
new AbbreviationsForCulture("en-US", "kN/min"),
10381038
}),
10391039
new CulturesForEnumValue((int) ForceChangeRateUnit.KilonewtonPerSecond,
10401040
new[]
@@ -1059,7 +1059,7 @@ private static readonly ReadOnlyCollection<UnitLocalization> DefaultLocalization
10591059
new CulturesForEnumValue((int) ForceChangeRateUnit.NewtonPerMinute,
10601060
new[]
10611061
{
1062-
new AbbreviationsForCulture("en-US", "N/m"),
1062+
new AbbreviationsForCulture("en-US", "N/min"),
10631063
}),
10641064
new CulturesForEnumValue((int) ForceChangeRateUnit.NewtonPerSecond,
10651065
new[]
@@ -2546,7 +2546,7 @@ private static readonly ReadOnlyCollection<UnitLocalization> DefaultLocalization
25462546
new CulturesForEnumValue((int) TemperatureChangeRateUnit.DegreeCelsiusPerMinute,
25472547
new[]
25482548
{
2549-
new AbbreviationsForCulture("en-US", "°C/m"),
2549+
new AbbreviationsForCulture("en-US", "°C/min"),
25502550
}),
25512551
new CulturesForEnumValue((int) TemperatureChangeRateUnit.DegreeCelsiusPerSecond,
25522552
new[]

UnitsNet/UnitDefinitions/ForceChangeRate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"Localization": [
1313
{
1414
"Culture": "en-US",
15-
"Abbreviations": [ "N/m" ]
15+
"Abbreviations": [ "N/min" ]
1616
}
1717
]
1818
},

UnitsNet/UnitDefinitions/TemperatureChangeRate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Localization": [
2525
{
2626
"Culture": "en-US",
27-
"Abbreviations": [ "°C/m" ]
27+
"Abbreviations": [ "°C/min" ]
2828
}
2929
]
3030
}

0 commit comments

Comments
 (0)