File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
java/src/org/openqa/selenium Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ public class JsonOutput implements Closeable {
264
264
}
265
265
266
266
/**
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
268
268
* ("pretty printed").
269
269
*
270
270
* @param enablePrettyPrinting {@code false} for compact format; {@code true} for "pretty
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public class RetryRequest implements Filter {
38
38
@ Override
39
39
public HttpHandler apply (HttpHandler next ) {
40
40
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
42
42
for (int i = 0 ; i < NEEDED_ATTEMPTS ; i ++) {
43
43
HttpResponse response ;
44
44
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
#
3
- # This script updates the development dependendencies used for the Python bindings.
3
+ # This script updates the development dependencies used for the Python bindings.
4
4
#
5
5
# When you run it, it will:
6
6
# - create and activate a temporary virtual env
You can’t perform that action at this time.
0 commit comments