Skip to content

Commit 0aaf390

Browse files
committed
Fix typos in java & scripts
1 parent a9348cf commit 0aaf390

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

java/src/org/openqa/selenium/json/JsonOutput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public class JsonOutput implements Closeable {
264264
}
265265

266266
/**
267-
* Specify whether the serialized JSON object should br formatted with line breaks and indention
267+
* Specify whether the serialized JSON object should br formatted with line breaks and indentation
268268
* ("pretty printed").
269269
*
270270
* @param enablePrettyPrinting {@code false} for compact format; {@code true} for "pretty

java/src/org/openqa/selenium/remote/http/RetryRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class RetryRequest implements Filter {
3838
@Override
3939
public HttpHandler apply(HttpHandler next) {
4040
return req -> {
41-
// start to preform the request in a loop, to allow retries
41+
// start to perform the request in a loop, to allow retries
4242
for (int i = 0; i < NEEDED_ATTEMPTS; i++) {
4343
HttpResponse response;
4444

java/src/org/openqa/selenium/support/ui/Wait.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface Wait<F> {
3333
*
3434
* <p>If the condition does not become true within a certain time (as defined by the implementing
3535
* class), this method will throw a non-specified {@link Throwable}. This is so that an
36-
* implementor may throw whatever is idiomatic for a given test infrastructure (e.g. JUnit4 would
36+
* implementer may throw whatever is idiomatic for a given test infrastructure (e.g. JUnit4 would
3737
* throw {@link AssertionError}).
3838
*
3939
* @param <T> the return type of the method, which must not be Void

scripts/update_py_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
#
3-
# This script updates the development dependendencies used for the Python bindings.
3+
# This script updates the development dependencies used for the Python bindings.
44
#
55
# When you run it, it will:
66
# - create and activate a temporary virtual env

0 commit comments

Comments
 (0)