diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-01-09 00:17:47 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-01-09 00:17:47 -0800 |
commit | 677d5c928c0da0fd0b3172d2ea023bc73777a06c (patch) | |
tree | cf7e210fb57613c89efcb184f3c9b1b86fdb40a9 /lisp/net | |
parent | b84e3dda5b63822f233732174f63e4854ca3f878 (diff) | |
download | emacs-677d5c928c0da0fd0b3172d2ea023bc73777a06c.tar.gz emacs-677d5c928c0da0fd0b3172d2ea023bc73777a06c.tar.bz2 emacs-677d5c928c0da0fd0b3172d2ea023bc73777a06c.zip |
Spelling fixes.
* lisp/net/tramp-adb.el (tramp-adb-get-toolbox):
Fix misspelling of 'unknown'.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/tramp-adb.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el index d3a11a866c0..ab13d4cf442 100644 --- a/lisp/net/tramp-adb.el +++ b/lisp/net/tramp-adb.el @@ -372,14 +372,14 @@ pass to the OPERATION." "ls"))) (defun tramp-adb-get-toolbox (vec) - "Get shell toolbox implementation: `toolbox' for orginal distributions -or `busybox' for CynagenMode based distributions" + "Get shell toolbox implementation: `toolbox' for original distributions +or `busybox' for CyanogenMod based distributions" (with-tramp-connection-property vec "toolbox" (tramp-message vec 5 "Checking shell toolbox implementation") (cond ((zerop (tramp-adb-command-exit-status vec "busybox")) 'busybox) ((zerop (tramp-adb-command-exit-status vec "toolbox")) 'toolbox) - (t 'unkown)))) + (t 'unknown)))) (defun tramp-adb--gnu-switches-to-ash (switches) |