diff --git a/Src/FluentAssertions/Common/IClock.cs b/Src/FluentAssertions/Common/IClock.cs index 592999a6b8..aa0ec745e0 100644 --- a/Src/FluentAssertions/Common/IClock.cs +++ b/Src/FluentAssertions/Common/IClock.cs @@ -12,14 +12,14 @@ public interface IClock /// /// Will block the current thread until a time delay has passed. /// - /// The time span to wait before completing the returned task + /// The time span to wait before completing the returned task void Delay(TimeSpan timeToDelay); /// /// Creates a task that will complete after a time delay. /// /// The time span to wait before completing the returned task - /// + /// /// A task that represents the time delay. /// Task DelayAsync(TimeSpan delay, CancellationToken cancellationToken); diff --git a/Src/FluentAssertions/Equivalency/IMemberSelectionRule.cs b/Src/FluentAssertions/Equivalency/IMemberSelectionRule.cs index 7e81b27fa5..7920bacaef 100644 --- a/Src/FluentAssertions/Equivalency/IMemberSelectionRule.cs +++ b/Src/FluentAssertions/Equivalency/IMemberSelectionRule.cs @@ -21,9 +21,6 @@ public interface IMemberSelectionRule /// A collection of members that was prepopulated by other selection rules. Can be empty. /// /// - /// - /// Type info about the subject. - /// /// /// The collection of members after applying this rule. Can contain less or more than was passed in. /// diff --git a/Src/FluentAssertions/Events/EventAssertions.cs b/Src/FluentAssertions/Events/EventAssertions.cs index 2569949f24..046826a2e1 100644 --- a/Src/FluentAssertions/Events/EventAssertions.cs +++ b/Src/FluentAssertions/Events/EventAssertions.cs @@ -27,7 +27,6 @@ protected internal EventAssertions(IMonitor monitor) : base(monitor.Subject) /// /// Asserts that an object has raised a particular event at least once. /// - /// The object exposing the event. /// /// The name of the event that should have been raised. /// @@ -59,7 +58,6 @@ public IEventRecorder Raise(string eventName, string because = "", params object /// /// Asserts that an object has not raised a particular event. /// - /// The object exposing the event. /// /// The name of the event that should not be raised. /// @@ -88,7 +86,6 @@ public void NotRaise(string eventName, string because = "", params object[] beca /// /// Asserts that an object has raised the event for a particular property. /// - /// The object exposing the event. /// /// A lambda expression referring to the property for which the property changed event should have been raised, or /// null to refer to all properties. @@ -124,7 +121,6 @@ public void NotRaise(string eventName, string because = "", params object[] beca /// /// Asserts that an object has not raised the event for a particular property. /// - /// The object exposing the event. /// /// A lambda expression referring to the property for which the property changed event should have been raised. /// diff --git a/Src/FluentAssertions/Execution/IAssertionScope.cs b/Src/FluentAssertions/Execution/IAssertionScope.cs index 19614ded1d..7655693918 100644 --- a/Src/FluentAssertions/Execution/IAssertionScope.cs +++ b/Src/FluentAssertions/Execution/IAssertionScope.cs @@ -84,7 +84,7 @@ public interface IAssertionScope : IDisposable /// If an expectation was set through a prior call to , then the failure message is appended to that /// expectation. /// - /// The format string that represents the failure message. + /// The format string that represents the failure message. /// Optional arguments to any numbered placeholders. IAssertionScope WithExpectation(string message, params object[] args); diff --git a/Src/FluentAssertions/Formatting/AggregateExceptionValueFormatter.cs b/Src/FluentAssertions/Formatting/AggregateExceptionValueFormatter.cs index afab88d5df..60b5cf564f 100644 --- a/Src/FluentAssertions/Formatting/AggregateExceptionValueFormatter.cs +++ b/Src/FluentAssertions/Formatting/AggregateExceptionValueFormatter.cs @@ -17,22 +17,7 @@ public bool CanHandle(object value) return value is AggregateException; } - /// - /// Returns a that represents this instance. - /// - /// The value for which to create a . - /// - /// - /// - /// A collection of objects that - /// - /// - /// The level of nesting for the supplied value. This is used for indenting the format string for objects that have - /// no override. - /// - /// - /// A that represents this instance. - /// + /// public string Format(object value, FormattingContext context, FormatChild formatChild) { var exception = (AggregateException)value; diff --git a/Src/FluentAssertions/Formatting/ByteValueFormatter.cs b/Src/FluentAssertions/Formatting/ByteValueFormatter.cs index 53176f35e6..c026cb3bb1 100644 --- a/Src/FluentAssertions/Formatting/ByteValueFormatter.cs +++ b/Src/FluentAssertions/Formatting/ByteValueFormatter.cs @@ -14,21 +14,7 @@ public bool CanHandle(object value) return value is byte; } - /// - /// Returns a that represents this instance. - /// - /// The value for which to create a . - /// - /// - /// A collection of objects that - /// - /// - /// The level of nesting for the supplied value. This is used for indenting the format string for objects that have - /// no override. - /// - /// - /// A that represents this instance. - /// + /// public string Format(object value, FormattingContext context, FormatChild formatChild) { return "0x" + ((byte)value).ToString("X2"); diff --git a/Src/FluentAssertions/Types/MethodInfoSelectorAssertions.cs b/Src/FluentAssertions/Types/MethodInfoSelectorAssertions.cs index a9da14138e..fe67a7bbf2 100644 --- a/Src/FluentAssertions/Types/MethodInfoSelectorAssertions.cs +++ b/Src/FluentAssertions/Types/MethodInfoSelectorAssertions.cs @@ -18,7 +18,7 @@ public class MethodInfoSelectorAssertions /// /// Initializes a new instance of the class. /// - /// The methods to assert. + /// The methods to assert. public MethodInfoSelectorAssertions(params MethodInfo[] methods) { SubjectMethods = methods;