Browse Source

Merge pull request #92 from syohex/misspellings

Correct misspellings
Ryan C. Thompson 9 years ago
parent
commit
b030776a3a
3 changed files with 10 additions and 10 deletions
  1. 5 5
      README.md
  2. 3 3
      ido-completing-read+.el
  3. 2 2
      ido-ubiquitous.el

+ 5 - 5
README.md

@@ -3,7 +3,7 @@
 [![MELPA Stable](https://stable.melpa.org/packages/ido-ubiquitous-badge.svg)](https://stable.melpa.org/#/ido-ubiquitous)
 [![MELPA Stable](https://stable.melpa.org/packages/ido-ubiquitous-badge.svg)](https://stable.melpa.org/#/ido-ubiquitous)
 [![Join the chat at https://gitter.im/DarwinAwardWinner/ido-ubiquitous](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/DarwinAwardWinner/ido-ubiquitous?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
 [![Join the chat at https://gitter.im/DarwinAwardWinner/ido-ubiquitous](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/DarwinAwardWinner/ido-ubiquitous?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
 
 
-Gimme some ido... everywhere! This pacakge replaces stock emacs
+Gimme some ido... everywhere! This package replaces stock emacs
 completion with ido completion wherever it is possible to do so
 completion with ido completion wherever it is possible to do so
 without breaking things.
 without breaking things.
 
 
@@ -175,7 +175,7 @@ standard meanings). This allows you to select the default by pressing
 RET as soon as the completion prompt appears, as intended (C-j would
 RET as soon as the completion prompt appears, as intended (C-j would
 select the first item).
 select the first item).
 
 
-Unfortuantely, there is no way for ido-ubiquitous to detect when a
+Unfortunately, there is no way for ido-ubiquitous to detect when a
 command is using this old-style default selection, so instead it uses
 command is using this old-style default selection, so instead it uses
 a built-in set of overrides telling it about commands that are known
 a built-in set of overrides telling it about commands that are known
 to use old-style defaults. If you discover a command where pressing
 to use old-style defaults. If you discover a command where pressing
@@ -232,7 +232,7 @@ You can see the bug reports about weird warnings
 
 
 ## What is the "bleeding-edge" branch? ##
 ## What is the "bleeding-edge" branch? ##
 
 
-All users should just use the master branch, or beter yet, install
+All users should just use the master branch, or better yet, install
 from MELPA. The bleeding-edge branch is where I test experimental and
 from MELPA. The bleeding-edge branch is where I test experimental and
 unfinished features. Because ido-ubiquitous hooks deeply into the
 unfinished features. Because ido-ubiquitous hooks deeply into the
 bowels of Emacs, a bug in ido-ubiquitous could easily freeze or crash
 bowels of Emacs, a bug in ido-ubiquitous could easily freeze or crash
@@ -249,7 +249,7 @@ As of version 3.0, most of the core functionality of ido-ubiquitous
 has been spun off into a separate library called ido-completing-read+,
 has been spun off into a separate library called ido-completing-read+,
 or "ido-cr+" for short. ido-cr+ incorporates all the features of
 or "ido-cr+" for short. ido-cr+ incorporates all the features of
 ido-ubiquitous that are actually just generic improvements to ido that
 ido-ubiquitous that are actually just generic improvements to ido that
-should probably always be anabled. It implements these fixes in a
+should probably always be enabled. It implements these fixes in a
 single function `ido-completing-read+`, which should be suitable as a
 single function `ido-completing-read+`, which should be suitable as a
 drop-in replacement for either `ido-completing-read` or
 drop-in replacement for either `ido-completing-read` or
 `completing-read`. Notably, unlike the original `ido-completing-read`,
 `completing-read`. Notably, unlike the original `ido-completing-read`,
@@ -259,5 +259,5 @@ Additionally, it allows you to manually fall back using C-f and C-b,
 in the same way you can use those keys to switch between file and
 in the same way you can use those keys to switch between file and
 buffer completion in ido. As a user, you don't really need to know
 buffer completion in ido. As a user, you don't really need to know
 anything about ido-cr+. However, if you are writing an Emacs package
 anything about ido-cr+. However, if you are writing an Emacs package
-and would like to incorpoarte ido completion, you may wish to use
+and would like to incorporate ido completion, you may wish to use
 ido-cr+ to get more robust completion with fewer weird edge cases.
 ido-cr+ to get more robust completion with fewer weird edge cases.

+ 3 - 3
ido-completing-read+.el

@@ -16,7 +16,7 @@
 ;;
 ;;
 ;;; Commentary:
 ;;; Commentary:
 
 
-;; This package implments the `ido-completing-read+' function, which
+;; This package implements the `ido-completing-read+' function, which
 ;; is a wrapper for `ido-completing-read'. Importantly, it detects
 ;; is a wrapper for `ido-completing-read'. Importantly, it detects
 ;; edge cases that ordinary ido cannot handle and either adjusts them
 ;; edge cases that ordinary ido cannot handle and either adjusts them
 ;; so ido *can* handle them, or else simply falls back to Emacs'
 ;; so ido *can* handle them, or else simply falls back to Emacs'
@@ -87,7 +87,7 @@ not be updated until you restart Emacs.")
     completing-read-function)
     completing-read-function)
   "Alternate completing-read function to use when ido is not wanted.
   "Alternate completing-read function to use when ido is not wanted.
 
 
-This will be used for functions that are incompatibile with ido
+This will be used for functions that are incompatible with ido
 or if ido cannot handle the completion arguments. It will also be
 or if ido cannot handle the completion arguments. It will also be
 used when the user requests non-ido completion manually via C-f
 used when the user requests non-ido completion manually via C-f
 or C-b."
 or C-b."
@@ -121,7 +121,7 @@ disable fallback based on collection size, set this to nil."
 
 
 Enabling this may interfere with or cause errors in other
 Enabling this may interfere with or cause errors in other
 packages that use `ido-completing-read'. If you discover any such
 packages that use `ido-completing-read'. If you discover any such
-incompatibilites, please file a bug report at
+incompatibilities, please file a bug report at
 https://github.com/DarwinAwardWinner/ido-ubiquitous/issues"
 https://github.com/DarwinAwardWinner/ido-ubiquitous/issues"
   :type 'boolean)
   :type 'boolean)
 
 

+ 2 - 2
ido-ubiquitous.el

@@ -277,7 +277,7 @@ behavior. Instead, it must return an empty string like
 
 
 The `disable' mode is available as a default, which seems
 The `disable' mode is available as a default, which seems
 counterintuitive. But this allows you, if you so desire, to
 counterintuitive. But this allows you, if you so desire, to
-enable ido-ubiquitous selectively for only a few specifc commands
+enable ido-ubiquitous selectively for only a few specific commands
 using overrides and disable it for everything else."
 using overrides and disable it for everything else."
   :type '(choice :tag "Default mode"
   :type '(choice :tag "Default mode"
                  (const :menu-tag "Disable"
                  (const :menu-tag "Disable"
@@ -414,7 +414,7 @@ file a bug report at https://github.com/DarwinAwardWinner/ido-ubiquitous/issues"
   :group 'ido-ubiquitous)
   :group 'ido-ubiquitous)
 
 
 (defmacro ido-ubiquitous-with-override (override &rest body)
 (defmacro ido-ubiquitous-with-override (override &rest body)
-  "Eval BODY with specicified OVERRIDE in place.
+  "Eval BODY with specified OVERRIDE in place.
 
 
 The OVERRIDE argument is evaluated normally, so if it is a
 The OVERRIDE argument is evaluated normally, so if it is a
 literal symbol, it must be quoted.
 literal symbol, it must be quoted.