changeset 58323:7c9759696709

(Coding Conventions): Fix typo.
author Thien-Thi Nguyen <ttn@gnuvola.org>
date Fri, 19 Nov 2004 15:20:32 +0000
parents 9fc5198d2147
children 9371bf53b95e
files lispref/tips.texi
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/tips.texi	Fri Nov 19 15:14:13 2004 +0000
+++ b/lispref/tips.texi	Fri Nov 19 15:20:32 2004 +0000
@@ -394,7 +394,7 @@
 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.