* doc/lispref/variables.texi (Local Variables): Compare letrec to
let* instead of let.
@end defspec
@defspec letrec (bindings@dots{}) forms@dots{}
-This special form is like @code{let}, but all the variables are bound
+This special form is like @code{let*}, but all the variables are bound
before any of the local values are computed. The values are then
assigned to the locally bound variables. This is only useful when
lexical binding is in effect, and you want to create closures that