From e6999be2f3251f5c681651e0ca8753292807d739 Mon Sep 17 00:00:00 2001 From: xp44mm <34696643@qq.com> Date: Mon, 29 Jul 2019 21:00:18 +0800 Subject: [PATCH] Update seq.unfold['state,'t]-function-[fsharp].md --- docs/conceptual/seq.unfold['state,'t]-function-[fsharp].md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conceptual/seq.unfold['state,'t]-function-[fsharp].md b/docs/conceptual/seq.unfold['state,'t]-function-[fsharp].md index 798b8e8e..e96e2af8 100644 --- a/docs/conceptual/seq.unfold['state,'t]-function-[fsharp].md +++ b/docs/conceptual/seq.unfold['state,'t]-function-[fsharp].md @@ -32,7 +32,7 @@ Seq.unfold generator state #### Parameters *generator* -Type: **'State -> 'T * 'State option** +Type: **'State -> ('T * 'State) option** A function that takes the current state and returns an option tuple of the next element of the sequence and the next state value.