Skip to content

Commit 320cd38

Browse files
committed
[java] Fixing misspellings in Java docs
[skip ci]
1 parent 22638e0 commit 320cd38

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

java/src/org/openqa/selenium/chromium/ChromiumNetworkConditions.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public Duration getLatency() {
6262
}
6363

6464
/**
65-
* Sets the simulated latency of the connection.
65+
* Sets the simulated latency of the connection.
6666
*
67-
* @param latency amount of latency, typically a Duration of millisceonds.
67+
* @param latency amount of latency, typically a Duration of milliseconds.
6868
*/
6969
public void setLatency(Duration latency) {
7070
this.latency = latency;
@@ -80,9 +80,9 @@ public int getDownloadThroughput() {
8080
}
8181

8282
/**
83-
* ets the throughput of the network connection in kb/second for downloading.
83+
* Sets the throughput of the network connection in kb/second for downloading.
8484
*
85-
* @param downloadThroughput thoughput in kb/second
85+
* @param downloadThroughput throughput in kb/second
8686
*/
8787
public void setDownloadThroughput(int downloadThroughput) {
8888
this.downloadThroughput = downloadThroughput;
@@ -98,9 +98,9 @@ public int getUploadThroughput() {
9898
}
9999

100100
/**
101-
* ets the throughput of the network connection in kb/second for uploading.
101+
* Sets the throughput of the network connection in kb/second for uploading.
102102
*
103-
* @param uploadThroughput thoughput in kb/second
103+
* @param uploadThroughput throughput in kb/second
104104
*/
105105
public void setUploadThroughput(int uploadThroughput) {
106106
this.uploadThroughput = uploadThroughput;

0 commit comments

Comments
 (0)