diff mbox series

common: fix a spelling error in _require_zoned_device

Message ID 20250204134612.2017269-1-hch@lst.de (mailing list archive)
State New
Headers show
Series common: fix a spelling error in _require_zoned_device | expand

Commit Message

Christoph Hellwig Feb. 4, 2025, 1:46 p.m. UTC
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 common/rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Darrick J. Wong Feb. 4, 2025, 5:04 p.m. UTC | #1
On Tue, Feb 04, 2025 at 02:46:12PM +0100, Christoph Hellwig wrote:
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Looks ok,
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>

--D

> ---
>  common/rc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/rc b/common/rc
> index 4658e3b8be74..6840bb1dfa10 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -2473,7 +2473,7 @@ _require_zoned_device()
>  
>  	local type=`_zone_type ${target}`
>  	if [ "${type}" = "none" ]; then
> -		_notrun "this test require zoned block device"
> +		_notrun "this test requires a zoned block device"
>  	fi
>  }
>  
> -- 
> 2.45.2
> 
>
Zorro Lang Feb. 4, 2025, 5:32 p.m. UTC | #2
On Tue, Feb 04, 2025 at 02:46:12PM +0100, Christoph Hellwig wrote:
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  common/rc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/rc b/common/rc
> index 4658e3b8be74..6840bb1dfa10 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -2473,7 +2473,7 @@ _require_zoned_device()
>  
>  	local type=`_zone_type ${target}`
>  	if [ "${type}" = "none" ]; then
> -		_notrun "this test require zoned block device"
> +		_notrun "this test requires a zoned block device"

Sure :)

Reviewed-by: Zorro Lang <zlang@redhat.com>

>  	fi
>  }
>  
> -- 
> 2.45.2
>
diff mbox series

Patch

diff --git a/common/rc b/common/rc
index 4658e3b8be74..6840bb1dfa10 100644
--- a/common/rc
+++ b/common/rc
@@ -2473,7 +2473,7 @@  _require_zoned_device()
 
 	local type=`_zone_type ${target}`
 	if [ "${type}" = "none" ]; then
-		_notrun "this test require zoned block device"
+		_notrun "this test requires a zoned block device"
 	fi
 }