From 8d421899a649ba28bcf6dec286938d829ae501c5 Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 12 Nov 2025 10:16:04 -0500 Subject: [PATCH] Fix formatting of doc comment --- src/state/ObservableScope.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state/ObservableScope.ts b/src/state/ObservableScope.ts index ae46a242..27f501c7 100644 --- a/src/state/ObservableScope.ts +++ b/src/state/ObservableScope.ts @@ -156,8 +156,8 @@ export class ObservableScope { * Splits a Behavior of objects with static properties into an object with * Behavior properties. * - * For example, splitting a Behavior<{ name: string, age: number }> results in - * an object of type { name$: Behavior age$: Behavior }. + * For example, splitting a `Behavior<{ name: string; age: number }>` results + * in an object of type `{ name$: Behavior; age$: Behavior }`. */ public splitBehavior( input$: Behavior,