File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
src/FsToolkit.ErrorHandling Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1111 <Compile Include =" Result.fs" />
1212 <Compile Include =" ResultCE.fs" />
1313 <Compile Include =" ResultOp.fs" />
14+ <Compile Include =" Option.fs" />
15+ <Compile Include =" OptionCE.fs" />
16+ <Compile Include =" OptionOp.fs" />
1417 <Compile Include =" ResultOption.fs" />
1518 <Compile Include =" ResultOptionCE.fs" />
1619 <Compile Include =" ResultOptionOp.fs" />
2427 <Compile Include =" AsyncValidation.fs" />
2528 <Compile Include =" AsyncValidationOp.fs" />
2629 <Compile Include =" AsyncValidationCE.fs" />
27- <Compile Include =" Option.fs" />
28- <Compile Include =" OptionCE.fs" />
29- <Compile Include =" OptionOp.fs" />
3030 <Compile Include =" ValueOption.fs" />
3131 <Compile Include =" ValueOptionCE.fs" />
3232 <Compile Include =" AsyncOption.fs" />
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ module Option =
6767 /// <summary>
6868 /// Takes two options and returns a tuple of the pair or none if either are none
6969 /// </summary>
70- /// <param name="option1 ">The input option</param>
71- /// <param name="option2 ">The input option</param>
70+ /// <param name="left ">The input option</param>
71+ /// <param name="right ">The input option</param>
7272 /// <returns></returns>
7373 let inline zip ( left : 'left option ) ( right : 'right option ) : ( 'left * 'right ) option =
7474 match left, right with
Original file line number Diff line number Diff line change @@ -126,9 +126,9 @@ module OptionCE =
126126 member inline _.Source ( result : 'value option ) : 'value option = result
127127
128128
129- // // / <summary>
130- // // / Method lets us transform data types into our internal representation.
131- // // / </summary>
129+ /// <summary>
130+ /// Method lets us transform data types into our internal representation.
131+ /// </summary>
132132 member inline _.Source ( vopt : 'value voption ) : 'value option = Option.ofValueOption vopt
133133
134134 let option = OptionBuilder()
You can’t perform that action at this time.
0 commit comments