From eee9d17abd872b55db3d9ab5b9b6fdc923c00cb2 Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Sun, 12 Feb 2012 01:54:27 +0400 Subject: [PATCH] getf: Correct docstring. Use `PLACE' instead of `Place' when referring to the variable. Fixes lp#930751 --- src/code/symbol.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code/symbol.lisp b/src/code/symbol.lisp index fe29dd6..f2f7f35 100644 --- a/src/code/symbol.lisp +++ b/src/code/symbol.lisp @@ -180,7 +180,7 @@ distinct from the global value. Can also be SETF." (defun getf (place indicator &optional (default ())) #!+sb-doc - "Search the property list stored in Place for an indicator EQ to INDICATOR. + "Search the property list stored in PLACE for an indicator EQ to INDICATOR. If one is found, return the corresponding value, else return DEFAULT." (do ((plist place (cddr plist))) ((null plist) default) -- 1.7.10.4