Skip to content

Commit 1fd8b11

Browse files
Fix various typos (#16012)
Co-authored-by: Swastik Baranwal <[email protected]>
1 parent 3383f43 commit 1fd8b11

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ you can configure it use Bazel artifacts:
266266
1. Open `rb/` as a main project directory.
267267
2. Run `bundle exec rake update` as necessary to create up-to-date artifacts. If this does not work, run `./go rb:update` from the `selenium` (parent) directory.
268268
3. In <kbd>Settings / Languages & Frameworks / Ruby SDK and Gems</kbd> add new <kbd>Interpreter</kbd> pointing to `../bazel-selenium/external/rules_ruby_dist/dist/bin/ruby`.
269-
4. You should now be able to run and debug any spec. It uses Chrome by default, but you can alter it using environment variables secified in [Ruby Testing](#ruby-2) section below.
269+
4. You should now be able to run and debug any spec. It uses Chrome by default, but you can alter it using environment variables specified in [Ruby Testing](#ruby-2) section below.
270270

271271
### Rust
272272

py/CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ Selenium 4.0 Alpha 7
684684
* Add debugpy to requirements
685685
* Fix uploading multiple files on remote driver (#7472) (#8734)
686686
* Correct docstring around find_element and find_elements. Fixes #8806
687-
* Add the ability to ignore local proxys that are available
687+
* Add the ability to ignore local proxies that are available
688688
* add script pinning to python bindings
689689
* Deprecate desired_capabilities property in favour of capabilities property
690690
* Update tests to use requirements file

py/docs/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Contributing to Python docs
6666

6767
First it is recommended that you read the main `CONTRIBUTING.md <https://github.com/SeleniumHQ/selenium/blob/trunk/CONTRIBUTING.md>`_.
6868

69-
Some steps for contibuting to the Python documentation ...
69+
Some steps for contributing to the Python documentation ...
7070

7171
- Check out changes locally using instructions above.
7272
- Try to resolve any warnings/errors.

py/selenium/webdriver/common/virtual_authenticator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __init__(
9494
- rp_id (str): Relying party identifier.
9595
- user_handle (bytes): userHandle associated to the credential. Must be Base64 encoded string. Can be None.
9696
- private_key (bytes): Base64 encoded PKCS#8 private key.
97-
- sign_count (int): intital value for a signature counter.
97+
- sign_count (int): initial value for a signature counter.
9898
"""
9999
self._id = credential_id
100100
self._is_resident_credential = is_resident_credential
@@ -137,7 +137,7 @@ def create_non_resident_credential(cls, id: bytes, rp_id: str, private_key: byte
137137
- id (bytes): Unique base64 encoded string.
138138
- rp_id (str): Relying party identifier.
139139
- private_key (bytes): Base64 encoded PKCS
140-
- sign_count (int): intital value for a signature counter.
140+
- sign_count (int): initial value for a signature counter.
141141
142142
:Returns:
143143
- Credential: A non-resident credential.
@@ -155,7 +155,7 @@ def create_resident_credential(
155155
- rp_id (str): Relying party identifier.
156156
- user_handle (bytes): userHandle associated to the credential. Must be Base64 encoded string.
157157
- private_key (bytes): Base64 encoded PKCS
158-
- sign_count (int): intital value for a signature counter.
158+
- sign_count (int): initial value for a signature counter.
159159
160160
:returns:
161161
- Credential: A resident credential.

py/test/unit/selenium/webdriver/remote/remote_connection_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def test_get_connection_manager_with_auth_https_proxy(mock_proxy_auth_settings):
277277
"*",
278278
".localhost",
279279
"localhost:80",
280-
"locahost",
280+
"localhost",
281281
"LOCALHOST",
282282
"LOCALHOST:80",
283283
"http://localhost",

0 commit comments

Comments
 (0)