Skip to content

docs: Fix typos and documentation improvement #3431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/node/src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export async function close(timeout?: number): Promise<boolean> {
}

/**
* A function that returns a Sentry release string dynamically from env variables
* Returns a release dynamically from environment variables.
*/
export function getSentryRelease(): string | undefined {
// Always read first as Sentry takes this as precedence
Expand Down
4 changes: 2 additions & 2 deletions packages/types/src/transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export interface Transport {
sendEvent(event: Event): PromiseLike<Response>;

/**
* Sends the session to the Store endpoint in Sentry.
* Sends the session to the Envelope endpoint in Sentry.
*
* @param body Session that should be sent to Sentry.
* @param session Session that should be sent to Sentry.
*/
sendSession?(session: Session): PromiseLike<Response>;

Expand Down