@@ -254,7 +254,7 @@ public Adjustment(JsonElement element)
254254 /// Returns true and sets the <c>out</c> parameter if the instance was constructed with a variant of
255255 /// type <see cref="PlanPhaseUsageDiscountAdjustment"/>.
256256 ///
257- /// <para>Consider using <see cref="Switch"> or <see cref="Match"> if you need to handle every variant.</para>
257+ /// <para>Consider using <see cref="Switch"/ > or <see cref="Match"/ > if you need to handle every variant.</para>
258258 ///
259259 /// <example>
260260 /// <code>
@@ -277,7 +277,7 @@ public bool TryPickPlanPhaseUsageDiscount(
277277 /// Returns true and sets the <c>out</c> parameter if the instance was constructed with a variant of
278278 /// type <see cref="PlanPhaseAmountDiscountAdjustment"/>.
279279 ///
280- /// <para>Consider using <see cref="Switch"> or <see cref="Match"> if you need to handle every variant.</para>
280+ /// <para>Consider using <see cref="Switch"/ > or <see cref="Match"/ > if you need to handle every variant.</para>
281281 ///
282282 /// <example>
283283 /// <code>
@@ -300,7 +300,7 @@ public bool TryPickPlanPhaseAmountDiscount(
300300 /// Returns true and sets the <c>out</c> parameter if the instance was constructed with a variant of
301301 /// type <see cref="PlanPhasePercentageDiscountAdjustment"/>.
302302 ///
303- /// <para>Consider using <see cref="Switch"> or <see cref="Match"> if you need to handle every variant.</para>
303+ /// <para>Consider using <see cref="Switch"/ > or <see cref="Match"/ > if you need to handle every variant.</para>
304304 ///
305305 /// <example>
306306 /// <code>
@@ -323,7 +323,7 @@ public bool TryPickPlanPhasePercentageDiscount(
323323 /// Returns true and sets the <c>out</c> parameter if the instance was constructed with a variant of
324324 /// type <see cref="PlanPhaseMinimumAdjustment"/>.
325325 ///
326- /// <para>Consider using <see cref="Switch"> or <see cref="Match"> if you need to handle every variant.</para>
326+ /// <para>Consider using <see cref="Switch"/ > or <see cref="Match"/ > if you need to handle every variant.</para>
327327 ///
328328 /// <example>
329329 /// <code>
@@ -344,7 +344,7 @@ public bool TryPickPlanPhaseMinimum([NotNullWhen(true)] out PlanPhaseMinimumAdju
344344 /// Returns true and sets the <c>out</c> parameter if the instance was constructed with a variant of
345345 /// type <see cref="PlanPhaseMaximumAdjustment"/>.
346346 ///
347- /// <para>Consider using <see cref="Switch"> or <see cref="Match"> if you need to handle every variant.</para>
347+ /// <para>Consider using <see cref="Switch"/ > or <see cref="Match"/ > if you need to handle every variant.</para>
348348 ///
349349 /// <example>
350350 /// <code>
@@ -364,7 +364,7 @@ public bool TryPickPlanPhaseMaximum([NotNullWhen(true)] out PlanPhaseMaximumAdju
364364 /// <summary>
365365 /// Calls the function parameter corresponding to the variant the instance was constructed with.
366366 ///
367- /// <para>Use the <c>TryPick</c> method(s) if you don't need to handle every variant, or <see cref="Match">
367+ /// <para>Use the <c>TryPick</c> method(s) if you don't need to handle every variant, or <see cref="Match"/ >
368368 /// if you need your function parameters to return something.</para>
369369 ///
370370 /// <exception cref="OrbInvalidDataException">
@@ -375,11 +375,11 @@ public bool TryPickPlanPhaseMaximum([NotNullWhen(true)] out PlanPhaseMaximumAdju
375375 /// <example>
376376 /// <code>
377377 /// instance.Switch(
378- /// (PlanPhaseUsageDiscountAdjustment value) => {...},
379- /// (PlanPhaseAmountDiscountAdjustment value) => {...},
380- /// (PlanPhasePercentageDiscountAdjustment value) => {...},
381- /// (PlanPhaseMinimumAdjustment value) => {...},
382- /// (PlanPhaseMaximumAdjustment value) => {...}
378+ /// (PlanPhaseUsageDiscountAdjustment value) => {...},
379+ /// (PlanPhaseAmountDiscountAdjustment value) => {...},
380+ /// (PlanPhasePercentageDiscountAdjustment value) => {...},
381+ /// (PlanPhaseMinimumAdjustment value) => {...},
382+ /// (PlanPhaseMaximumAdjustment value) => {...}
383383 /// );
384384 /// </code>
385385 /// </example>
@@ -418,7 +418,7 @@ public void Switch(
418418 /// Calls the function parameter corresponding to the variant the instance was constructed with and
419419 /// returns its result.
420420 ///
421- /// <para>Use the <c>TryPick</c> method(s) if you don't need to handle every variant, or <see cref="Switch">
421+ /// <para>Use the <c>TryPick</c> method(s) if you don't need to handle every variant, or <see cref="Switch"/ >
422422 /// if you don't need your function parameters to return a value.</para>
423423 ///
424424 /// <exception cref="OrbInvalidDataException">
@@ -429,11 +429,11 @@ public void Switch(
429429 /// <example>
430430 /// <code>
431431 /// var result = instance.Match(
432- /// (PlanPhaseUsageDiscountAdjustment value) => {...},
433- /// (PlanPhaseAmountDiscountAdjustment value) => {...},
434- /// (PlanPhasePercentageDiscountAdjustment value) => {...},
435- /// (PlanPhaseMinimumAdjustment value) => {...},
436- /// (PlanPhaseMaximumAdjustment value) => {...}
432+ /// (PlanPhaseUsageDiscountAdjustment value) => {...},
433+ /// (PlanPhaseAmountDiscountAdjustment value) => {...},
434+ /// (PlanPhasePercentageDiscountAdjustment value) => {...},
435+ /// (PlanPhaseMinimumAdjustment value) => {...},
436+ /// (PlanPhaseMaximumAdjustment value) => {...}
437437 /// );
438438 /// </code>
439439 /// </example>
0 commit comments