From c8c6f139cca025f113d9c4cdba9e262c29feef06 Mon Sep 17 00:00:00 2001 From: Klaus Klein Date: Sun, 3 Dec 2023 14:24:59 +0000 Subject: [PATCH] Fix Expr.ForIntegerRangeLoop example quotation. Was mis-pasted from IfThenElse example. --- src/FSharp.Core/quotations.fsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSharp.Core/quotations.fsi b/src/FSharp.Core/quotations.fsi index 28842c323dd..f3aec29009a 100644 --- a/src/FSharp.Core/quotations.fsi +++ b/src/FSharp.Core/quotations.fsi @@ -445,7 +445,7 @@ type Expr = /// /// Expr.ForIntegerRangeLoop(loopVariable, startExpr, endExpr, body) /// - /// Evaluates to a quotation with the same structure as <@ if 1 > 3 then 6 else 7 @>. + /// Evaluates to a quotation with the same structure as <@ for x in 6..7 do System.Console.WriteLine("hello") @>. /// static member ForIntegerRangeLoop: loopVariable: Var * start: Expr * endExpr: Expr * body: Expr -> Expr