From fcae48e9f485c0527228b32d02f214441908bbbc Mon Sep 17 00:00:00 2001 From: Jeremy Fiel <32110157+jeremyfiel@users.noreply.github.com> Date: Thu, 19 Oct 2023 04:54:11 -0400 Subject: [PATCH] fix(docs): update example (#1281) --- docs/rules/configurable-rules.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/configurable-rules.md b/docs/rules/configurable-rules.md index de9103dd3..38c11e18b 100644 --- a/docs/rules/configurable-rules.md +++ b/docs/rules/configurable-rules.md @@ -485,10 +485,10 @@ The following example asserts that the operation summary doesn't start with "The ```yaml rules: - rule/operation-summary-contains-test: + rule/operation-summary-does-not-start-with-the: subject: type: Operation - property: The summary + property: summary assertions: notPattern: /^The/ ```