git: 7e1d9ec3e0 - main - FreeBSD Handbook: … ext2/…: ada1s1 (not ad1s1)

From: Graham Perrin <grahamperrin_at_FreeBSD.org>
Date: Thu, 27 Apr 2023 21:27:52 UTC
The branch main has been updated by grahamperrin:

URL: https://cgit.FreeBSD.org/doc/commit/?id=7e1d9ec3e02487f6b6d7662e70783cf00196e630

commit 7e1d9ec3e02487f6b6d7662e70783cf00196e630
Author:     Graham Perrin <grahamperrin@FreeBSD.org>
AuthorDate: 2023-04-27 21:21:24 +0000
Commit:     Graham Perrin <grahamperrin@FreeBSD.org>
CommitDate: 2023-04-27 21:21:24 +0000

    FreeBSD Handbook: … ext2/…: ada1s1 (not ad1s1)
    
    Under
    https://docs.freebsd.org/en/books/handbook/filesystems/#_ext2_ext3_ext4
    the example uses:
    
    /dev/ad1s1
    
    ada(4) exists, ad(4) does not. Correct the example, use:
    
    /dev/ada1s1
---
 documentation/content/en/books/handbook/filesystems/_index.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/documentation/content/en/books/handbook/filesystems/_index.adoc b/documentation/content/en/books/handbook/filesystems/_index.adoc
index b06552d4d2..ed11d6968e 100644
--- a/documentation/content/en/books/handbook/filesystems/_index.adoc
+++ b/documentation/content/en/books/handbook/filesystems/_index.adoc
@@ -95,9 +95,9 @@ Journalling and encryption are not supported yet.
 ====
 
 To access an ext file system, mount the ext volume by specifying its FreeBSD partition name and an existing mount point.
-This example mounts [.filename]#/dev/ad1s1# on [.filename]#/mnt#:
+This example mounts [.filename]#/dev/ada1s1# on [.filename]#/mnt#:
 
 [source,shell]
 ....
-# mount -t ext2fs /dev/ad1s1 /mnt
+# mount -t ext2fs /dev/ada1s1 /mnt
 ....