Undocument obsolete form of "let"

This commit is contained in:
Eelco Dolstra 2013-10-24 22:06:39 +02:00
parent fba17a9043
commit 36e67ff16b
1 changed files with 2 additions and 8 deletions

View File

@ -902,8 +902,8 @@ encountered</quote>).</para></footnote>.</para>
<simplesect><title>Let-expressions</title>
<para>A let-expression allows you define local
variables for an expression. For instance,
<para>A let-expression allows you define local variables for an
expression. For instance,
<programlisting>
let
@ -915,12 +915,6 @@ evaluates to <literal>"foobar"</literal>.
</para>
<note><para>There is also an obsolete form of let-expression,
<literal>let { <replaceable>attrs</replaceable> }</literal>, which is
translated to <literal>rec { <replaceable>attrs</replaceable>
}.body</literal>. That is, the body of the let-expression is the
<literal>body</literal> attribute of the set.</para></note>
</simplesect>