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

Fixed Spelling in throwed error and contribution docs #10456

Merged
merged 1 commit into from
May 1, 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 core/bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ fn print(
if arg_len == 2 {
let int_val = match is_err_arg.integer_value(scope) {
Some(v) => v,
None => return throw_type_error(scope, "Invalid arugment. Argument 2 should indicate wheter or not to print to stderr."),
None => return throw_type_error(scope, "Invalid argument. Argument 2 should indicate whether or not to print to stderr."),
};
is_err = int_val != 0;
};
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/web_platform_tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ it.
This will check that the python3 (or `python.exe` on Windows) is actually
Python 3.

You can specify the following flags to customize bahaviour:
You can specify the following flags to customize behaviour:

```
--rebuild
Expand Down