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 | | ------- | ------- | ---------------------------------------------------- | 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 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 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 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"