From 36e67ff16bc6a4cb96466f58616a95a25250274d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Oct 2013 22:06:39 +0200 Subject: [PATCH] Undocument obsolete form of "let" --- doc/manual/writing-nix-expressions.xml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/doc/manual/writing-nix-expressions.xml b/doc/manual/writing-nix-expressions.xml index 4154926268..4b6574288e 100644 --- a/doc/manual/writing-nix-expressions.xml +++ b/doc/manual/writing-nix-expressions.xml @@ -902,8 +902,8 @@ encountered).. Let-expressions -A let-expression allows you define local -variables for an expression. For instance, +A let-expression allows you define local variables for an +expression. For instance, let @@ -915,12 +915,6 @@ evaluates to "foobar". -There is also an obsolete form of let-expression, -let { attrs }, which is -translated to rec { attrs -}.body. That is, the body of the let-expression is the -body attribute of the set. -