diff --git a/java/src/org/openqa/selenium/json/JsonOutput.java b/java/src/org/openqa/selenium/json/JsonOutput.java index e62a785a5730e..102447a8c2793 100644 --- a/java/src/org/openqa/selenium/json/JsonOutput.java +++ b/java/src/org/openqa/selenium/json/JsonOutput.java @@ -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 be formatted with line breaks and indentation * ("pretty printed"). * * @param enablePrettyPrinting {@code false} for compact format; {@code true} for "pretty diff --git a/java/src/org/openqa/selenium/remote/http/RetryRequest.java b/java/src/org/openqa/selenium/remote/http/RetryRequest.java index 3f8e2759a8405..17a3f7e0ed25c 100644 --- a/java/src/org/openqa/selenium/remote/http/RetryRequest.java +++ b/java/src/org/openqa/selenium/remote/http/RetryRequest.java @@ -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; diff --git a/scripts/update_py_dependencies.sh b/scripts/update_py_dependencies.sh index 7655679ee8ac8..4e3de673b38f0 100755 --- a/scripts/update_py_dependencies.sh +++ b/scripts/update_py_dependencies.sh @@ -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