diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-01-18 05:39:40 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-01-18 05:39:40 +0100 |
commit | db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c (patch) | |
tree | 51ac199a0ed2477d0395c7eace93fc8fa4dabf6d /lisp/cedet/semantic/db-el.el | |
parent | 33972e801477b638f22f4ba3f6e04199d5992124 (diff) | |
download | emacs-db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c.tar.gz emacs-db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c.tar.bz2 emacs-db9e401b3bf3514cadf6fc5a4f15e8c869d0df4c.zip |
Fix typos in docstrings, error messages, etc.
Diffstat (limited to 'lisp/cedet/semantic/db-el.el')
-rw-r--r-- | lisp/cedet/semantic/db-el.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/cedet/semantic/db-el.el b/lisp/cedet/semantic/db-el.el index d46f727fca6..d313d1dc578 100644 --- a/lisp/cedet/semantic/db-el.el +++ b/lisp/cedet/semantic/db-el.el @@ -76,7 +76,7 @@ It does not need refreshing." (defvar-mode-local emacs-lisp-mode semanticdb-find-default-throttle '(project omniscience) "Search project files, then search this omniscience database. -It is not necessary to to system or recursive searching because of +It is not necessary to do system or recursive searching because of the omniscience database.") ;;; Filename based methods @@ -246,12 +246,12 @@ TOKTYPE is a hint to the type of tag desired." ;;; Search Overrides ;; (defvar semanticdb-elisp-mapatom-collector nil - "Variable used to collect mapatoms output.") + "Variable used to collect `mapatoms' output.") (defmethod semanticdb-find-tags-by-name-method ((table semanticdb-table-emacs-lisp) name &optional tags) - "Find all tags name NAME in TABLE. -Uses `inter-soft' to match NAME to emacs symbols. + "Find all tags named NAME in TABLE. +Uses `intern-soft' to match NAME to Emacs symbols. Return a list of tags." (if tags (call-next-method) ;; No need to search. Use `intern-soft' which does the same thing for us. @@ -281,7 +281,7 @@ Return a list of tags." (defmethod semanticdb-find-tags-for-completion-method ((table semanticdb-table-emacs-lisp) prefix &optional tags) - "In TABLE, find all occurances of tags matching PREFIX. + "In TABLE, find all occurrences of tags matching PREFIX. Optional argument TAGS is a list of tags to search. Returns a table of all matching tags." (if tags (call-next-method) @@ -290,7 +290,7 @@ Returns a table of all matching tags." (defmethod semanticdb-find-tags-by-class-method ((table semanticdb-table-emacs-lisp) class &optional tags) - "In TABLE, find all occurances of tags of CLASS. + "In TABLE, find all occurrences of tags of CLASS. Optional argument TAGS is a list of tags to search. Returns a table of all matching tags." (if tags (call-next-method) @@ -316,7 +316,7 @@ Like `semanticdb-find-tags-by-name-method' for Emacs Lisp." (defmethod semanticdb-deep-find-tags-for-completion-method ((table semanticdb-table-emacs-lisp) prefix &optional tags) - "In TABLE, find all occurances of tags matching PREFIX. + "In TABLE, find all occurrences of tags matching PREFIX. Optional argument TAGS is a list of tags to search. Like `semanticdb-find-tags-for-completion-method' for Emacs Lisp." (semanticdb-find-tags-for-completion-method table prefix tags)) |