Skip to content

Commit 643017d

Browse files
authored
Merge pull request #95 from ericmutta/patch-1
XML Doc Fixes
2 parents f279b9d + fd71500 commit 643017d

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
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

src/AngleSharp.Css/Dom/BlendMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public enum BlendMode : byte
6767
/// </summary>
6868
SoftLight,
6969
/// <summary>
70-
/// Substracts the darker color to the lighter one. Black on the foreground
70+
/// Subtracts the darker color to the lighter one. Black on the foreground
7171
/// has therefore no effect, white leads to the color of the backdrop, inverted.
7272
/// </summary>
7373
Difference,

src/AngleSharp.Css/Dom/CssRuleType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public enum CssRuleType : byte
3333
[DomName("MEDIA_RULE")]
3434
Media = 4,
3535
/// <summary>
36-
/// This is for definining @font-face rule.
36+
/// This is for defining @font-face rule.
3737
/// </summary>
3838
[DomName("FONT_FACE_RULE")]
3939
FontFace = 5,

src/AngleSharp.Css/Dom/FlexDirection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public enum FlexDirection
1010
/// </summary>
1111
Row,
1212
/// <summary>
13-
/// Inverse direction as inine axis, i.e., from right to left.
13+
/// Inverse direction as inline axis, i.e., from right to left.
1414
/// </summary>
1515
RowReverse,
1616
/// <summary>

src/AngleSharp.Css/Dom/ICssStyleSheet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
public interface ICssStyleSheet : IStyleSheet
1212
{
1313
/// <summary>
14-
/// Gets the @import rule if the stylesheet was importated otherwise it
14+
/// Gets the @import rule if the stylesheet was imported otherwise it
1515
/// returns null.
1616
/// </summary>
1717
[DomName("ownerRule")]
@@ -39,7 +39,7 @@ public interface ICssStyleSheet : IStyleSheet
3939
/// <param name="index">
4040
/// The index representing the position to be inserted.
4141
/// </param>
42-
/// <returns>The index of insertation.</returns>
42+
/// <returns>The index of insertion.</returns>
4343
[DomName("insertRule")]
4444
Int32 Insert(String rule, Int32 index);
4545

src/AngleSharp.Css/Dom/LineStyle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public enum LineStyle : byte
3838
/// </summary>
3939
Ridge,
4040
/// <summary>
41-
/// The outline makes the box look as though it were embeded in the canvas.
41+
/// The outline makes the box look as though it were embedded in the canvas.
4242
/// </summary>
4343
Inset,
4444
/// <summary>

src/AngleSharp.Css/Dom/TextAlignLast.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public enum TextAlignLast : byte
88
/// <summary>
99
/// The affected line is aligned per the value of text-align, unless
1010
/// text-align is justify, in which case the effect is the same as
11-
/// etting text-align-last to left.
11+
/// setting text-align-last to left.
1212
/// </summary>
1313
Auto,
1414
/// <summary>

src/AngleSharp.Css/Dom/UpdateFrequency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public enum UpdateFrequency : byte
1414
/// The layout may change dynamically according to the
1515
/// usual rules of CSS, but the output device is not
1616
/// able to render or display changes quickly enough for
17-
/// them to be percieved as a smooth animation.
17+
/// them to be perceived as a smooth animation.
1818
/// Example: E-ink screens or severely under-powered
1919
/// devices.
2020
/// </summary>

src/AngleSharp.Css/Extensions/StyleCollectionExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ public static ICssStyleDeclaration ComputeDeclarations(this IEnumerable<ICssStyl
6666
}
6767

6868
/// <summary>
69-
/// Computes the cascaded style, i.e. resolves the cascade by ordering after specifity.
70-
/// Two rules with the same specifity are ordered according to their appearance. The more
69+
/// Computes the cascaded style, i.e. resolves the cascade by ordering after specificity.
70+
/// Two rules with the same specificity are ordered according to their appearance. The more
7171
/// recent declaration wins. Inheritance is not taken into account.
7272
/// </summary>
7373
/// <param name="styleCollection">The style rules to apply.</param>

src/AngleSharp.Css/Parser/CssParserExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static class CssParserExtensions
3131
/// Parses a CSS stylesheet from hosting stylesheet asynchronously.
3232
/// </summary>
3333
/// <param name="parser">The parser to extend.</param>
34-
/// <param name="sheet">The stylesheet containg the URL reference.</param>
34+
/// <param name="sheet">The stylesheet containing the URL reference.</param>
3535
/// <returns>The task yielding the finished stylesheet.</returns>
3636
public static Task<ICssStyleSheet> ParseStyleSheetAsync(this ICssParser parser, ICssStyleSheet sheet) => parser.ParseStyleSheetAsync(sheet, CancellationToken.None);
3737
}

0 commit comments

Comments
 (0)