From 7f8bf30b701482bb61de811076413a741b55a9e0 Mon Sep 17 00:00:00 2001 From: Joshua DeWeese Date: Wed, 13 Apr 2022 11:48:43 -0400 Subject: [PATCH] sys/can: fix typo in documentation The documentation mentions the can module's interaction with the can tranciver driver (can_trx), but incorrectly calls it trx_can. This patch fixes the documentation. --- sys/include/can/doc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/can/doc.txt b/sys/include/can/doc.txt index 8112e5838a..7f60c8fefc 100644 --- a/sys/include/can/doc.txt +++ b/sys/include/can/doc.txt @@ -9,7 +9,7 @@ * * The low-level interface, candev, must be implemented by controller drivers. * The optional transceiver support can also be activated. Transceiver drivers must - * then implement the trx_can interface. + * then implement the can_trx interface. * * The data link layer is built around a device thread (one thread per CAN device), * and a common part. The common part is composed of the dll interface, for low-level