Skip to content

Commit a1b33c3

Browse files
authored
chore: fix typos (#1133)
1 parent a5f0147 commit a1b33c3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

appium/options/android/common/adb/logcat_filter_specs_option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def logcat_filter_specs(self, value: str) -> None:
3535
"""
3636
Series of tag[:priority] where tag is a log component tag (or * for all)
3737
and priority is: V Verbose, D Debug, I Info, W Warn, E Error, F Fatal,
38-
S Silent (supress all output). '' means ':d' and tag by itself means tag:v.
38+
S Silent (suppress all output). '' means ':d' and tag by itself means tag:v.
3939
If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS.
4040
If no filterspec is found, filter defaults to '*:I'.
4141
"""

appium/webdriver/extensions/android/nativekey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ class AndroidKey:
867867
TV_SATELLITE_SERVICE = 240
868868

869869
# Key code constant: Toggle Network key.
870-
# Toggles selecting broacast services.
870+
# Toggles selecting broadcast services.
871871
TV_NETWORK = 241
872872

873873
# Key code constant: Antenna/Cable key.

appium/webdriver/extensions/execute_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def execute_driver(self, script: str, script_type: str = 'webdriverio', timeout_
4141
ExecuteDriver.Result: The result of the script. It has 'result' and 'logs' keys.
4242
4343
Raises:
44-
WebDriverException: If something error happenes in the script. The message has the original error message.
44+
WebDriverException: If something error happens in the script. The message has the original error message.
4545
"""
4646

4747
class Result:

appium/webdriver/webelement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def clear(self) -> Self:
8888
"""
8989

9090
# NOTE: this method is overridden because the selenium client returned None instead of self.
91-
# Appium python cleint would like to allow users to chain methods.
91+
# Appium python client would like to allow users to chain methods.
9292
data = {'id': self.id}
9393
self._execute(Command.CLEAR, data)
9494
return self

0 commit comments

Comments
 (0)