You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -405,23 +405,25 @@ public AndConstraint<JTokenAssertions> HaveCount(int expected, string because =
405
405
/// is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
406
406
/// </param>
407
407
/// <param name="becauseArgs">
408
-
/// Zero or more objects to format using the placeholders in <see cref="because"/>.
408
+
/// Zero or more objects to format using the placeholders in <paramref name="because"/>.
409
409
/// </param>
410
410
/// <remarks>Use this method to match the current <see cref="JToken"/> against an arbitrary subtree,
411
411
/// permitting it to contain any additional properties or elements. This way we can test multiple properties on a <see cref="JObject"/> at once,
412
412
/// or test if a <see cref="JArray"/> contains any items that match a set of properties, assert that a JSON document has a given shape, etc. </remarks>
413
413
/// <example>
414
414
/// This example asserts the values of multiple properties of a child object within a JSON document.
/// <example>This example asserts that a <see cref="JArray"/> within a <see cref="JObject"/> has at least one element with at least the given properties</example>
420
+
/// <example>
421
+
/// This example asserts that a <see cref="JArray"/> within a <see cref="JObject"/> has at least one element with at least the given properties
@@ -438,23 +440,25 @@ public AndConstraint<JTokenAssertions> ContainSubtree(string subtree, string bec
438
440
/// is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
439
441
/// </param>
440
442
/// <param name="becauseArgs">
441
-
/// Zero or more objects to format using the placeholders in <see cref="because"/>.
443
+
/// Zero or more objects to format using the placeholders in <paramref name="because"/>.
442
444
/// </param>
443
445
/// <remarks>Use this method to match the current <see cref="JToken"/> against an arbitrary subtree,
444
446
/// permitting it to contain any additional properties or elements. This way we can test multiple properties on a <see cref="JObject"/> at once,
445
447
/// or test if a <see cref="JArray"/> contains any items that match a set of properties, assert that a JSON document has a given shape, etc. </remarks>
446
448
/// <example>
447
449
/// This example asserts the values of multiple properties of a child object within a JSON document.
/// <example>This example asserts that a <see cref="JArray"/> within a <see cref="JObject"/> has at least one element with at least the given properties</example>
455
+
/// <example>
456
+
/// This example asserts that a <see cref="JArray"/> within a <see cref="JObject"/> has at least one element with at least the given properties
0 commit comments