Fix formatting of doc comment

This commit is contained in:
Robin
2025-11-12 10:16:04 -05:00
parent 9f4d954cfa
commit 8d421899a6

View File

@@ -156,8 +156,8 @@ export class ObservableScope {
* Splits a Behavior of objects with static properties into an object with * Splits a Behavior of objects with static properties into an object with
* Behavior properties. * Behavior properties.
* *
* For example, splitting a Behavior<{ name: string, age: number }> results in * For example, splitting a `Behavior<{ name: string; age: number }>` results
* an object of type { name$: Behavior<string> age$: Behavior<number> }. * in an object of type `{ name$: Behavior<string>; age$: Behavior<number> }`.
*/ */
public splitBehavior<T extends object>( public splitBehavior<T extends object>(
input$: Behavior<T>, input$: Behavior<T>,