Skip to content

Commit

Permalink
fix: comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexogamer committed Oct 28, 2023
1 parent ae02f37 commit 0af5ab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { ClientboundNotification } from "./websocketNotifications";
export interface ClientOptions {
/** The API URL to connect to. (default: https://api.revolt.chat) */
apiURL: string;
/** Enable debug mode. (currently does nothing) (default: false) */
/** Enable debug mode (currently does nothing). (default: false) */
debug: boolean;
/** If set to >0, send `Ping` packet every `heartbeat` **seconds**. (default: 30) */
heartbeat: number;
Expand All @@ -62,7 +62,7 @@ export interface ClientSession {
id: string;
/** Name of this session. */
name: string;
/** Session token. **DO NOT SHARE THIS WITH ANYONE** */
/** Session token. **DO NOT SHARE THIS WITH ANYONE.** */
token: string;
/** Whether this session is a user or bot. */
type: "user" | "bot";
Expand Down

0 comments on commit 0af5ab5

Please sign in to comment.