Skip to content

Commit b196b3f

Browse files
committed
Fixed wrong type
1 parent 31668fb commit b196b3f

File tree

1 file changed

+1
-1
lines changed
  • src/AngleSharp.Css/Constants

1 file changed

+1
-1
lines changed

src/AngleSharp.Css/Constants/Map.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ static class Map
887887
/// <summary>
888888
/// Contains the string-length mapping.
889889
/// </summary>
890-
public static readonly Dictionary<String, Sizing> Sizings = new Dictionary<String, Width>(StringComparer.OrdinalIgnoreCase)
890+
public static readonly Dictionary<String, Sizing> Sizings = new Dictionary<String, Sizing>(StringComparer.OrdinalIgnoreCase)
891891
{
892892
{ CssKeywords.FitContent, Sizing.FitContent },
893893
{ CssKeywords.MinContent, Sizing.MinContent},

0 commit comments

Comments
 (0)