Skip to content
Closed
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 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 java/src/org/openqa/selenium/support/ui/Wait.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public interface Wait<F> {
*
* <p>If the condition does not become true within a certain time (as defined by the implementing
* class), this method will throw a non-specified {@link Throwable}. This is so that an
* implementor may throw whatever is idiomatic for a given test infrastructure (e.g. JUnit4 would
* implementer may throw whatever is idiomatic for a given test infrastructure (e.g. JUnit4 would
* throw {@link AssertionError}).
*
* @param <T> the return type of the method, which must not be Void
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