Skip to content

Commit a3ed519

Browse files
committed
Comment fixes. + .gitattributes.
1 parent fbf545e commit a3ed519

29 files changed

+62
-28
lines changed

.gitattributes

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto eol=crlf
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
*.cs text diff=csharp
14+
15+
###############################################################################
16+
# diff behavior for common document formats
17+
#
18+
# Convert binary document formats to text before diffing them. This feature
19+
# is only available from the command line. Turn it on by uncommenting the
20+
# entries below.
21+
###############################################################################
22+
*.doc diff=astextplain
23+
*.DOC diff=astextplain
24+
*.docx diff=astextplain
25+
*.DOCX diff=astextplain
26+
*.dot diff=astextplain
27+
*.DOT diff=astextplain
28+
*.pdf diff=astextplain
29+
*.PDF diff=astextplain
30+
*.rtf diff=astextplain
31+
*.RTF diff=astextplain

src/FluentAssertions.AspNetCore.Mvc/AcceptedAtActionResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace FluentAssertions.AspNetCore.Mvc
1313
public class AcceptedAtActionResultAssertions : ObjectAssertions
1414
{
1515
/// <summary>
16-
/// Initializes a new instance of the <see cref="T:AcceptedAtActionResultAssertions" /> class.
16+
/// Initializes a new instance of the <see cref="AcceptedAtActionResultAssertions" /> class.
1717
/// </summary>
1818
public AcceptedAtActionResultAssertions(AcceptedAtActionResult subject) : base(subject) { }
1919

src/FluentAssertions.AspNetCore.Mvc/AcceptedAtRouteResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace FluentAssertions.AspNetCore.Mvc
1313
public class AcceptedAtRouteResultAssertions : ObjectAssertions
1414
{
1515
/// <summary>
16-
/// Initializes a new instance of the <see cref="T:AcceptedAtRouteResultAssertions" /> class.
16+
/// Initializes a new instance of the <see cref="AcceptedAtRouteResultAssertions" /> class.
1717
/// </summary>
1818
public AcceptedAtRouteResultAssertions(AcceptedAtRouteResult subject) : base(subject) { }
1919

src/FluentAssertions.AspNetCore.Mvc/AcceptedResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class AcceptedResultAssertions : ObjectAssertions
1515
#region Public Constructors
1616

1717
/// <summary>
18-
/// Initializes a new instance of the <see cref="T:AcceptedResultAssertions" /> class.
18+
/// Initializes a new instance of the <see cref="AcceptedResultAssertions" /> class.
1919
/// </summary>
2020
/// <param name="subject">The object to test assertion on</param>
2121
public AcceptedResultAssertions(AcceptedResult subject) : base(subject)

src/FluentAssertions.AspNetCore.Mvc/ActionResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class ActionResultAssertions : ObjectAssertions
1414
#region Public Constructors
1515

1616
/// <summary>
17-
/// Initializes a new instance of the <see cref="T:ActionResultAssertions" /> class.
17+
/// Initializes a new instance of the <see cref="ActionResultAssertions" /> class.
1818
/// </summary>
1919
public ActionResultAssertions(IActionResult subject) : base(subject)
2020
{

src/FluentAssertions.AspNetCore.Mvc/ActionResultAssertionsOfTValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ public ActionResultAssertions(ActionResult<TValue> subject)
3434
#region Public Properties
3535

3636
/// <summary>
37-
/// Gets the <see cref="ActionResult{TValue}.Result"/> of the actual Subjhect.
37+
/// Gets the <see cref="ActionResult{TValue}.Result"/> of the Subject.
3838
/// </summary>
3939
public ActionResult Result => Subject.Result;
4040

4141
/// <summary>
42-
/// Gets the <see cref="ActionResult{TValue}.Value"/> of the actual Subjhect.
42+
/// Gets the <see cref="ActionResult{TValue}.Value"/> of the Subject.
4343
/// </summary>
4444
public TValue Value => Subject.Value;
4545

src/FluentAssertions.AspNetCore.Mvc/BadRequestObjectResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class BadRequestObjectResultAssertions : ObjectAssertions
1313
{
1414
#region Public Constructors
1515
/// <summary>
16-
/// Initializes a new instance of the <see cref="T:BadRequestObjectResult" /> class.
16+
/// Initializes a new instance of the <see cref="BadRequestObjectResult" /> class.
1717
/// </summary>
1818
/// <param name="subject">The object to test assertion on</param>
1919
public BadRequestObjectResultAssertions(BadRequestObjectResult subject) : base(subject)

src/FluentAssertions.AspNetCore.Mvc/ChallengeResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class ChallengeResultAssertions : ObjectAssertions
1919
#region Public Constructors
2020

2121
/// <summary>
22-
/// Initializes a new instance of the <see cref="T:ChallengeResultAssertions" /> class.
22+
/// Initializes a new instance of the <see cref="ChallengeResultAssertions" /> class.
2323
/// </summary>
2424
/// <param name="subject">The object to test assertion on</param>
2525
public ChallengeResultAssertions(object subject) : base(subject)

src/FluentAssertions.AspNetCore.Mvc/ContentResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace FluentAssertions.AspNetCore.Mvc
1313
public class ContentResultAssertions : ObjectAssertions
1414
{
1515
/// <summary>
16-
/// Initializes a new instance of the <see cref="T:ContentResultAssertions" /> class.
16+
/// Initializes a new instance of the <see cref="ContentResultAssertions" /> class.
1717
/// </summary>
1818
public ContentResultAssertions(ContentResult subject) : base(subject)
1919
{

src/FluentAssertions.AspNetCore.Mvc/ConvertToActionResultAssertions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ namespace FluentAssertions.AspNetCore.Mvc
1414
/// </summary>
1515
public class ConvertToActionResultAssertions : ReferenceTypeAssertions<IConvertToActionResult, ConvertToActionResultAssertions>
1616
{
17+
/// <summary>
18+
/// Initializes a new instance of the <see cref="ConvertToActionResultAssertions" /> class.
19+
/// </summary>
1720
public ConvertToActionResultAssertions(IConvertToActionResult subject)
1821
{
1922
Subject = subject;

0 commit comments

Comments
 (0)