git: c73262b816 - main - Arch Handbook - driver basics: Minor tweaks

From: Sergio Carlavilla Delgado <carlavilla_at_FreeBSD.org>
Date: Sun, 29 Dec 2024 09:58:16 UTC
The branch main has been updated by carlavilla:

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

commit c73262b816dfa20fee25cb9c355180e7a62bd610
Author:     Mark Linimon <linimon@FreeBSD.org>
AuthorDate: 2024-12-29 09:56:05 +0000
Commit:     Sergio Carlavilla Delgado <carlavilla@FreeBSD.org>
CommitDate: 2024-12-29 09:56:05 +0000

    Arch Handbook - driver basics: Minor tweaks
    
    Reviewed by:    emaste@, carlavilla@, Pau Amma<pauamma@gundo.com>
    Pull Request:   https://github.com/freebsd/freebsd-doc/pull/417
---
 documentation/content/en/books/arch-handbook/driverbasics/_index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc b/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc
index 542bcdbc7a..d4124981a3 100644
--- a/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc
+++ b/documentation/content/en/books/arch-handbook/driverbasics/_index.adoc
@@ -343,4 +343,4 @@ For this reason, no serious applications rely on block devices, and in fact, alm
 
 Drivers for network devices do not use device nodes in order to be accessed. Their selection is based on other decisions made inside the kernel and instead of calling open(), use of a network device is generally introduced by using the system call socket(2).
 
-For more information see ifnet(9), the source of the loopback device, and Bill Paul's network drivers.
+For more information see ifnet(9), the source of the loopback device.