Skip to content

Commit 85faa75

Browse files
Fix various typos in comments (#16022)
Co-authored-by: Corey Goldberg <[email protected]>
1 parent c1010eb commit 85faa75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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 be 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

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)