From 0260365bf7c456e15eb2a0da3f1577e08bc29cf4 Mon Sep 17 00:00:00 2001 From: John Chesshir Date: Fri, 9 Aug 2024 13:21:24 -0500 Subject: [PATCH] Fix wording in theory.md The first sentence under the section "Theories in Generic Fixtures" didn't make sense at first, until I substituted the word "or" with the phonetically similar word "are". --- docs/articles/nunit/writing-tests/attributes/theory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/nunit/writing-tests/attributes/theory.md b/docs/articles/nunit/writing-tests/attributes/theory.md index 09028b323..77c7a4c72 100644 --- a/docs/articles/nunit/writing-tests/attributes/theory.md +++ b/docs/articles/nunit/writing-tests/attributes/theory.md @@ -83,7 +83,7 @@ public class SqrtTests ## Theories in Generic Fixtures -In a generic fixture with Type parameter `T` individual methods using `T` as a parameter type or not generic, since `T` +In a generic fixture with Type parameter `T` individual methods using `T` as a parameter type are not generic, since `T` has been resolved to an actual Type in instantiating the fixture instance. You may use such methods as theories and any data of the appropriate type will be used.