aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorThien-Thi Nguyen <[email protected]>2004-11-19 15:20:32 +0000
committerThien-Thi Nguyen <[email protected]>2004-11-19 15:20:32 +0000
commit8b192981e402175a1dd46ef66330de614f86dbb4 (patch)
treefed9cbaddfd64dab6fafcfdbc97829c89800a45e /lispref
parent7bba6c37cfded83def793de3d7dd805531dc0551 (diff)
(Coding Conventions): Fix typo.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/tips.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/tips.texi b/lispref/tips.texi
index 4182260028..8d7fd5ec5f 100644
--- a/lispref/tips.texi
+++ b/lispref/tips.texi
@@ -394,7 +394,7 @@ time. Here's how to do this:
If you bind a variable in one function, and use it or set it in
another function, the compiler warns about the latter function unless
the variable has a definition. But adding a definition would be
-unclean if the variable has a short names, since Lisp packages should
+unclean if the variable has a short name, since Lisp packages should
not define short variable names. The right thing to do is to rename
this variable to start with the name prefix used for the other
functions and variables in your package.