Skip to content

Commit 1feaadf

Browse files
committed
fix: doc comment malforming mdx table syntax
1 parent 510b927 commit 1feaadf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/common/src/Evolu/Relay.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { LazyValue } from "../Function.js";
55
import { err, ok, Result } from "../Result.js";
66
import { sql, SqliteError } from "../Sqlite.js";
77
import { SimpleName } from "../Type.js";
8-
import { OwnerId, OwnerWriteKey, TransportConfig } from "./Owner.js";
8+
import { OwnerId, OwnerWriteKey } from "./Owner.js";
99
import { ProtocolInvalidDataError } from "./Protocol.js";
1010
import {
1111
createSqliteStorageBase,
@@ -44,7 +44,7 @@ export interface RelayConfig extends ConsoleConfig {
4444
* this only controls relay access, not write permissions. Since all data is
4545
* encrypted on the relay, OwnerId exposure is safe.
4646
*
47-
* Owners specify which relays to connect to via {@link TransportConfig}. In
47+
* Owners specify which relays to connect to via `TransportConfig`. In
4848
* WebSocket-based implementations, this check occurs before accepting the
4949
* connection, with the OwnerId typically extracted from the URL path (e.g.,
5050
* `ws://localhost:4000/<ownerId>`).

packages/common/src/Types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export type NullablePartial<
7979
export type IntentionalNever = never;
8080

8181
/**
82-
* String | number | bigint | boolean | undefined | null
82+
* String, number, bigint, boolean, undefined, null
8383
*
8484
* https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#literal-types
8585
*/

0 commit comments

Comments
 (0)