From 5191a2203fa2ee3bdd5c81992219792b5efe7ecd Mon Sep 17 00:00:00 2001 From: Christer van der Meeren Date: Fri, 22 Sep 2023 14:05:41 +0200 Subject: [PATCH] Fix typo --- DOCUMENTATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index f1937e4..7c82130 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -528,7 +528,7 @@ myFormatter Config.Current * `Throw`: Polymorphic exception check for top-level exception * `ThrowInner`: Polymorphic exception check for top-level or inner exception on any level (including any exception in an `AggregateException`) -* `ThrowExactly`: Exact exception check top-level exception +* `ThrowExactly`: Exact exception check for top-level exception * `NotThrow` * `Roundtrip`: Check that a (potentially `Option` or `Result`-returning) function returns the input value. The function is typically a composition of parsing and extracting a value, e.g., `(fromX >> toX).Should().Roundtrip(value)`.