[PATCH] docs:process:changes: fix version command for btrfs-progs

Nihar Chaithanya posted 1 patch 1 month, 2 weeks ago
Documentation/process/changes.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] docs:process:changes: fix version command for btrfs-progs
Posted by Nihar Chaithanya 1 month, 2 weeks ago
The command given in the changes.rst document to check the version of
btrfs-progs is:
-> btrfsck
which does not output the version, and according to manual page of the
btrfs-progs the command to check the version of btrfs-progs is:
-> btrfs --version

Add a fix changing the command to check the version of btrfs-progs.

Signed-off-by: Nihar Chaithanya <niharchaithanya@gmail.com>
---
 Documentation/process/changes.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/process/changes.rst b/Documentation/process/changes.rst
index 00f1ed7c59c3..82b5e378eebf 100644
--- a/Documentation/process/changes.rst
+++ b/Documentation/process/changes.rst
@@ -46,7 +46,7 @@ jfsutils               1.1.3            fsck.jfs -V
 reiserfsprogs          3.6.3            reiserfsck -V
 xfsprogs               2.6.0            xfs_db -V
 squashfs-tools         4.0              mksquashfs -version
-btrfs-progs            0.18             btrfsck
+btrfs-progs            0.18             btrfs --version
 pcmciautils            004              pccardctl -V
 quota-tools            3.09             quota -V
 PPP                    2.4.0            pppd --version
-- 
2.34.1
Re: [PATCH] docs:process:changes: fix version command for btrfs-progs
Posted by Shuah Khan 1 month, 1 week ago
On 10/12/24 08:14, Nihar Chaithanya wrote:
> The command given in the changes.rst document to check the version of
> btrfs-progs is:
> -> btrfsck

Just use spaces - remove ->

> which does not output the version, and according to manual page of the
> btrfs-progs the command to check the version of btrfs-progs is:
> -> btrfs --version

Same here

You can simply the change log to say the following:

btrfs is the right command to check btrfs-progs version.
Change the command to check btrfs-progs version in the
changes.rst document

> 
> Add a fix changing the command to check the version of btrfs-progs.

> 
> Signed-off-by: Nihar Chaithanya <niharchaithanya@gmail.com>
> ---
>   Documentation/process/changes.rst | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/process/changes.rst b/Documentation/process/changes.rst
> index 00f1ed7c59c3..82b5e378eebf 100644
> --- a/Documentation/process/changes.rst
> +++ b/Documentation/process/changes.rst
> @@ -46,7 +46,7 @@ jfsutils               1.1.3            fsck.jfs -V
>   reiserfsprogs          3.6.3            reiserfsck -V
>   xfsprogs               2.6.0            xfs_db -V
>   squashfs-tools         4.0              mksquashfs -version
> -btrfs-progs            0.18             btrfsck
> +btrfs-progs            0.18             btrfs --version
>   pcmciautils            004              pccardctl -V
>   quota-tools            3.09             quota -V
>   PPP                    2.4.0            pppd --version

thanks,
-- Shuah