git: e24fd6d66409 - main - bluetooth(3): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sun, 31 Jul 2022 10:13:34 UTC
The branch main has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=e24fd6d664091dbdf35e5fa77f276613b2e21691

commit e24fd6d664091dbdf35e5fa77f276613b2e21691
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-07-31 10:13:13 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-07-31 10:13:13 +0000

    bluetooth(3): Fix a typo in a source code comment
    
    - s/intrrupt/interrupt/
    
    MFC after:      3 days
---
 usr.sbin/bluetooth/bthidd/server.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/bluetooth/bthidd/server.c b/usr.sbin/bluetooth/bthidd/server.c
index 33915307db0e..59b4bafc6a06 100644
--- a/usr.sbin/bluetooth/bthidd/server.c
+++ b/usr.sbin/bluetooth/bthidd/server.c
@@ -114,7 +114,7 @@ server_init(bthid_server_p srv)
 		return (-1);
 	}
 
-	/* Create intrrupt socket */
+	/* Create interrupt socket */
 	srv->intr = socket(PF_BLUETOOTH, SOCK_SEQPACKET, BLUETOOTH_PROTO_L2CAP);
 	if (srv->intr < 0) {
 		syslog(LOG_ERR, "Could not create interrupt L2CAP socket. " \