Skip to content

Commit 02a114f

Browse files
committed
Docs: Fix typedocs link issues
1 parent 047cf00 commit 02a114f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/core/room.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ export interface Room {
316316
*
317317
* **Note**:
318318
* - Discontinuities require fetching missed messages via history.
319-
* - Message subscriptions automatically reset their position on discontinuity.
319+
* - Message subscriptions automatically reset their position on discontinuity, see {@link MessageSubscriptionResponse.historyBeforeSubscribe} for more information.
320320
* - You should subscribe to discontinuities before attaching to the room.
321321
* @param handler - Callback invoked when a discontinuity is detected
322322
* @returns Subscription object with an unsubscribe method

src/core/typing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export interface Typing {
107107
* becomes a no-op. Multiple rapid calls are serialized to maintain consistency.
108108
*
109109
* **Note**:
110-
* - The connection must be in the {@link ConnectionStatus.Connected} state.
110+
* - The connection must be in the `connected` state.
111111
* - Calls to `keystroke()` and `stop()` are serialized and resolve in order.
112112
* - The most recent operation always determines the final typing state.
113113
* - The room must be attached to send typing events.
@@ -143,7 +143,7 @@ export interface Typing {
143143
* the final state.
144144
*
145145
* **Note**:
146-
* - The connection must be in the {@link ConnectionStatus.Connected} state.
146+
* - The connection must be in the `connected` state.
147147
* - Calls to `keystroke()` and `stop()` are serialized and resolve in order.
148148
* - The room must be attached to send typing events.
149149
* @returns Promise that resolves when the stop event has been sent

0 commit comments

Comments
 (0)