Skip to content
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

fix minor typos #180

Merged
merged 2 commits into from
Mar 24, 2023
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
8 changes: 4 additions & 4 deletions src/webR/webr-chan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ export interface CallRObjectMethodMessage extends Message {
export interface EvalROptions {
/**
* The R environment to evaluate within.
* Deafult: The global environment.
* Default: The global environment.
*/
env?: WebRData;
/**
* Should the stdout and stderr output streams be captured and returned?
* Deafult: `true`.
* Default: `true`.
*/
captureStreams?: boolean;
/**
Expand All @@ -45,12 +45,12 @@ export interface EvalROptions {
withAutoprint?: boolean;
/**
* Should an R error condition be re-thrown as a JavaScript exception?
* Deafult: `true`.
* Default: `true`.
*/
throwJsException?: boolean;
/**
* Should the code be executed using a `tryCatch` with handlers in place?
* Deafult: `true`.
* Default: `true`.
*/
withHandlers?: boolean;
}
Expand Down
2 changes: 1 addition & 1 deletion src/webR/webr-main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export interface WebROptions {

/**
* Set the communication channel type to be used.
* Deafult: `channelType.Automatic`
* Default: `channelType.Automatic`
*/
channelType?: (typeof ChannelType)[keyof typeof ChannelType];
}
Expand Down