From 95e809332e9e904b40b8f5f0ad57adfee1a3e023 Mon Sep 17 00:00:00 2001 From: JT Date: Fri, 2 Dec 2022 14:44:41 +0800 Subject: [PATCH] Improve assertion documentation wording --- src/Alba/HeaderExpectations.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Alba/HeaderExpectations.cs b/src/Alba/HeaderExpectations.cs index 1b9f1a96..a6aba549 100644 --- a/src/Alba/HeaderExpectations.cs +++ b/src/Alba/HeaderExpectations.cs @@ -78,11 +78,11 @@ public void ShouldHaveValues(params string[] expectedValues) } /// - /// Asserts that there is at least a single header of this name in the Http response. + /// Asserts that there is one or more values for this header in the Http response /// public void ShouldHaveValues() { _parent.AssertThat(new HeaderExistsAssertion(_headerKey)); } } -} \ No newline at end of file +}