From 2eb73c73a22a0c6e08adaaeeb9bc6cdedb87ec4a Mon Sep 17 00:00:00 2001 From: Mark Pearce Date: Mon, 22 Jun 2026 10:55:14 -0300 Subject: [PATCH 1/5] Fixes ifArraySizeInfo.Reserve() Parameters indentation --- docs/REFERENCES/brightscript/interfaces/ifarraysizeinfo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/REFERENCES/brightscript/interfaces/ifarraysizeinfo.md b/docs/REFERENCES/brightscript/interfaces/ifarraysizeinfo.md index 0825cab4..d7327c96 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifarraysizeinfo.md +++ b/docs/REFERENCES/brightscript/interfaces/ifarraysizeinfo.md @@ -54,7 +54,7 @@ An integer indicating the current storage capacity of the array. Sends a request to allocate or increase storage capacity of the array to hold at least the specified number of items. -### Parameters +#### Parameters | Name | Type | Description | | ------- | ------- | ---------------------------------------------------- | From a056262fe20b575a43313abb55ce2800e782ca31 Mon Sep 17 00:00:00 2001 From: Mark Pearce Date: Mon, 22 Jun 2026 11:02:30 -0300 Subject: [PATCH 2/5] Fixes ifArraySort functions with invalid parameter definitions --- docs/REFERENCES/brightscript/interfaces/ifarraysort.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/REFERENCES/brightscript/interfaces/ifarraysort.md b/docs/REFERENCES/brightscript/interfaces/ifarraysort.md index 988eb355..0389e323 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifarraysort.md +++ b/docs/REFERENCES/brightscript/interfaces/ifarraysort.md @@ -21,7 +21,7 @@ next: ## Supported methods -### Sort(flags as String = "") as Void +### Sort(flags = "" as String) as Void #### Description @@ -62,7 +62,7 @@ next: ' sets the array to ["DOG", "cat", "bee"] ``` -### SortBy(fieldName as String, flags as String = "") as Void +### SortBy(fieldName as String, flags = "" as String) as Void #### Description From b858d4f69e22a820ca2eeb9cca482e1e40f2f832 Mon Sep 17 00:00:00 2001 From: Mark Pearce Date: Mon, 22 Jun 2026 11:05:16 -0300 Subject: [PATCH 3/5] Fixes ifInput.EventResponse() function declaration --- docs/REFERENCES/brightscript/interfaces/ifinput.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/REFERENCES/brightscript/interfaces/ifinput.md b/docs/REFERENCES/brightscript/interfaces/ifinput.md index d6f05e98..caa4ed18 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifinput.md +++ b/docs/REFERENCES/brightscript/interfaces/ifinput.md @@ -58,7 +58,7 @@ See [Implementing Voice Controls](doc:transport-controls) for more information. A flag indicating whether transport event notifications were successfully registered. -### EventResponse(roAssociativeArray aa) as Boolean +### EventResponse(aa as roAssociativeArray) as Boolean #### Description From db7f0aba8100ef41ea8af06c8a9ec945049505e7 Mon Sep 17 00:00:00 2001 From: Mark Pearce Date: Mon, 22 Jun 2026 11:06:14 -0300 Subject: [PATCH 4/5] Fixes ifRenderThreadQueue.NumCopies() return indentation --- docs/REFERENCES/brightscript/interfaces/ifrenderthreadqueue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/REFERENCES/brightscript/interfaces/ifrenderthreadqueue.md b/docs/REFERENCES/brightscript/interfaces/ifrenderthreadqueue.md index adfe2938..9950468a 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifrenderthreadqueue.md +++ b/docs/REFERENCES/brightscript/interfaces/ifrenderthreadqueue.md @@ -111,6 +111,6 @@ This function is similar to the **PostMessage()** function, but it copies data i Returns the total number of objects for the channel that were copied by the **PostMessage()** function instead of being moved. -### Return Value +#### Return Value An integer indicating the total number of objects that were copied by the **PostMessage()** function From 243af5486b7d292648e612592d7711c9f54d4718 Mon Sep 17 00:00:00 2001 From: Mark Pearce Date: Mon, 22 Jun 2026 11:08:38 -0300 Subject: [PATCH 5/5] Fixes ifStringOps.Arg() indentation --- docs/REFERENCES/brightscript/interfaces/ifstringops.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/REFERENCES/brightscript/interfaces/ifstringops.md b/docs/REFERENCES/brightscript/interfaces/ifstringops.md index 6a12e8e3..dbe1aac9 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifstringops.md +++ b/docs/REFERENCES/brightscript/interfaces/ifstringops.md @@ -632,9 +632,9 @@ print "(%c%c%c)".Format(&h7B, 64, &h7D) '=> "({@})" ``` -## Arg(Strings...) As String +### Arg(Strings...) As String -### Description +#### Description Replaces occurrences of `%N` in this string (where N is "1".."9") with the corresponding argument from the parameter _strings._. The arguments are not positional: the first of the _string_ replaces the `%N` with the lowest `N` (all of them), the second of the _strings_ the `%N` with the next-lowest `N`, and so on. @@ -646,11 +646,11 @@ If a parameter is specified, but no placeholders exist, a warning is output to t If the number of placeholders is greater than the number of parameters, those placeholders are not modified. -### Return Value +#### Return Value The resulting string after all eligible placeholder replacements have been made. -### Examples +#### Examples ```brightscript title = "Princess"