Skip to content

Commit c51f654

Browse files
1eyewonderTheAngryByrd
authored andcommitted
Updated Option location in project structure w/ minor comment updates
1 parent ecc31b0 commit c51f654

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/FsToolkit.ErrorHandling/FsToolkit.ErrorHandling.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
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" />
@@ -24,9 +27,6 @@
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" />

src/FsToolkit.ErrorHandling/Option.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/FsToolkit.ErrorHandling/OptionCE.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)