From cfbd23ea27d2ae258f292034ae99b08a866ea5ba Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 19 Aug 2025 15:40:45 -0700 Subject: [PATCH] Fix grammar in AddX method responsibilities docs The docs said, "executes" but then said "validate inputs", which didn't read smoothly to me. Saying the method "will" "validate inputs" seems like a better fit. --- docs/specs/appmodel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/specs/appmodel.md b/docs/specs/appmodel.md index 79d87048f1d..3a6f3b2bea4 100644 --- a/docs/specs/appmodel.md +++ b/docs/specs/appmodel.md @@ -931,7 +931,7 @@ This guide describes each pattern and shows a **verbatim Redis example** at the ## Adding Resources with `AddX(...)` -An `AddX(...)` method executes: +An `AddX(...)` method will: 1. **Validate inputs** (`builder`, `name`, required arguments). 2. **Instantiate** the data-only resource (`new TResource(...)`).