getf: Correct docstring.
authorStas Boukarev <stassats@gmail.com>
Sat, 11 Feb 2012 21:54:27 +0000 (01:54 +0400)
committerStas Boukarev <stassats@gmail.com>
Sat, 11 Feb 2012 21:54:27 +0000 (01:54 +0400)
Use `PLACE' instead of `Place' when referring to the variable.

Fixes lp#930751

src/code/symbol.lisp

index fe29dd6..f2f7f35 100644 (file)
@@ -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)