Skip to content

Commit fd71500

Browse files
authored
Fix unit names in UnitNames.cs
Change "radiants" to "Radians" for the CSS "rad" unit (see https://developer.mozilla.org/en-US/docs/Web/CSS/angle#units). Change "Grads" to "Gradians" for the CSS "grad" unit (see https://developer.mozilla.org/en-US/docs/Web/CSS/angle#units). Change "Remainings" to "Font size of the root element." for the CSS "rem" unit (see https://developer.mozilla.org/en-US/docs/Web/CSS/length#units). Change "Pieces" to "Picas" for the CSS "pc" unit (see https://developer.mozilla.org/en-US/docs/Web/CSS/length#units).
1 parent c4d9499 commit fd71500

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AngleSharp.Css/Constants/UnitNames.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ public static class UnitNames
3333
public static readonly String Turn = "turn";
3434

3535
/// <summary>
36-
/// Radiants.
36+
/// Radians.
3737
/// </summary>
3838
public static readonly String Rad = "rad";
3939

4040
/// <summary>
41-
/// Grads.
41+
/// Gradians.
4242
/// </summary>
4343
public static readonly String Grad = "grad";
4444

@@ -123,12 +123,12 @@ public static class UnitNames
123123
public static readonly String Pt = "pt";
124124

125125
/// <summary>
126-
/// Remainings.
126+
/// Font size of the root element.
127127
/// </summary>
128128
public static readonly String Rem = "rem";
129129

130130
/// <summary>
131-
/// Pieces.
131+
/// Picas.
132132
/// </summary>
133133
public static readonly String Pc = "pc";
134134

0 commit comments

Comments
 (0)