From 2e6b4d410e82837fae86f68ba7cc55842dafc9e6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 31 Dec 2020 09:49:43 +1100 Subject: [PATCH] docs: fix simple typo, somthing -> something There is a small typo in adb/adb_protocol.py. Should read `something` rather than `somthing`. --- adb/adb_protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/adb_protocol.py b/adb/adb_protocol.py index 4ff28c7..7c0cfe0 100644 --- a/adb/adb_protocol.py +++ b/adb/adb_protocol.py @@ -460,7 +460,7 @@ def InteractiveShellCommand(cls, conn, cmd=None, strip_cmd=True, delim=None, str delim = delim.encode('utf-8') # Delimiter may be shell@hammerhead:/ $ - # The user or directory could change, making the delimiter somthing like root@hammerhead:/data/local/tmp $ + # The user or directory could change, making the delimiter something like root@hammerhead:/data/local/tmp $ # Handle a partial delimiter to search on and clean up if delim: user_pos = delim.find(b'@')