Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/REFERENCES/brightscript/interfaces/ifarraysizeinfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
| ------- | ------- | ---------------------------------------------------- |
Expand Down
4 changes: 2 additions & 2 deletions docs/REFERENCES/brightscript/interfaces/ifarraysort.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ next:

## Supported methods

### Sort(flags as String = "") as Void
### Sort(flags = "" as String) as Void

#### Description

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/REFERENCES/brightscript/interfaces/ifinput.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions docs/REFERENCES/brightscript/interfaces/ifstringops.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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"
Expand Down