Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 java/src/org/openqa/selenium/json/JsonOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public class JsonOutput implements Closeable {
}

/**
* Specify whether the serialized JSON object should br formatted with line breaks and indention
* Specify whether the serialized JSON object should br formatted with line breaks and indentation
* ("pretty printed").
*
* @param enablePrettyPrinting {@code false} for compact format; {@code true} for "pretty
Expand Down
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/remote/http/RetryRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class RetryRequest implements Filter {
@Override
public HttpHandler apply(HttpHandler next) {
return req -> {
// start to preform the request in a loop, to allow retries
// start to perform the request in a loop, to allow retries
for (int i = 0; i < NEEDED_ATTEMPTS; i++) {
HttpResponse response;

Expand Down
2 changes: 1 addition & 1 deletion scripts/update_py_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# This script updates the development dependendencies used for the Python bindings.
# This script updates the development dependencies used for the Python bindings.
#
# When you run it, it will:
# - create and activate a temporary virtual env
Expand Down