From 1c5c80d244c171814c5facafc57435ee38d90ddb Mon Sep 17 00:00:00 2001 From: Iampete1 Date: Fri, 7 Jun 2024 19:21:12 +0100 Subject: [PATCH] AP_Scripting: Docs: remove stray grave --- libraries/AP_Scripting/docs/docs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Scripting/docs/docs.lua b/libraries/AP_Scripting/docs/docs.lua index ab0b0149a0..f88cdeecae 100644 --- a/libraries/AP_Scripting/docs/docs.lua +++ b/libraries/AP_Scripting/docs/docs.lua @@ -2064,7 +2064,7 @@ function baro:healthy(instance) end -- Serial ports serial = {} --- Returns the UART instance that allows connections from scripts (those with SERIALx_PROTOCOL = 28`). +-- Returns the UART instance that allows connections from scripts (those with SERIALx_PROTOCOL = 28). -- For instance = 0, returns first such UART, second for instance = 1, and so on. -- If such an instance is not found, returns nil. ---@param instance integer -- the 0-based index of the UART instance to return.