diff --git a/Src/FluentAssertions/EventRaisingExtensions.cs b/Src/FluentAssertions/EventRaisingExtensions.cs index b5b87cbedc..89652289b6 100644 --- a/Src/FluentAssertions/EventRaisingExtensions.cs +++ b/Src/FluentAssertions/EventRaisingExtensions.cs @@ -53,8 +53,9 @@ public static IEventRecording WithSender(this IEventRecording eventRecording, ob } /// - /// Asserts that at least one occurrence of the events had at least one of the arguments matching a predicate. Returns - /// only the events that matched that predicate. + /// Asserts that at least one occurence of the events had one or more arguments of the expected type + /// any of which matched a predicate. Returns + /// only the events that matched both type and predicate. /// public static IEventRecording WithArgs(this IEventRecording eventRecording, Expression> predicate) { @@ -86,8 +87,9 @@ public static IEventRecording WithArgs(this IEventRecording eventRecording, E } /// - /// Asserts that at least one of the occurred events has arguments the match the predicates in the same order. Returns - /// only the events that matched those predicates. + /// Asserts that at least one occurence of the events had one or more arguments of the expected type + /// which matched the predicates in the same order. Returns + /// only the events that matched both type and predicates. /// /// /// If a null is provided as predicate argument, the corresponding event parameter value is ignored.