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