summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
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 4182260028b..8d7fd5ec5fb 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.