From 1ee2515db1f5cef4e308f95809b3b370ad1bfdec Mon Sep 17 00:00:00 2001 From: thomasd16 Date: Fri, 18 Aug 2017 20:05:03 -0400 Subject: [PATCH 1/2] Removed Missing CustomOperationAttribute Issue #266 --- .../core.customoperationattribute-class-[fsharp].md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/conceptual/core.customoperationattribute-class-[fsharp].md b/docs/conceptual/core.customoperationattribute-class-[fsharp].md index f3d66c6c..67c974cf 100644 --- a/docs/conceptual/core.customoperationattribute-class-[fsharp].md +++ b/docs/conceptual/core.customoperationattribute-class-[fsharp].md @@ -37,12 +37,6 @@ CustomOperationAttribute member this.MaintainsVariableSpace : bool with get, set member this.MaintainsVariableSpaceUsingBind : bool with get, set member this.Name : string - member this.IsLikeGroupJoin : bool with get, set - member this.IsLikeJoin : bool with get, set - member this.IsLikeZip : bool with get, set - member this.JoinConditionWord : string with get, set - member this.MaintainsVariableSpace : bool with get, set - member this.MaintainsVariableSpaceUsingBind : bool with get, set end ``` From 4c4237df50669757c33ad3aaadfbf7d4d02f0b76 Mon Sep 17 00:00:00 2001 From: thomasd16 Date: Fri, 18 Aug 2017 20:10:46 -0400 Subject: [PATCH 2/2] JoinConditionWord was Accidentally removed despite not being duplicated. Fixing this. --- docs/conceptual/core.customoperationattribute-class-[fsharp].md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conceptual/core.customoperationattribute-class-[fsharp].md b/docs/conceptual/core.customoperationattribute-class-[fsharp].md index 67c974cf..7dc34781 100644 --- a/docs/conceptual/core.customoperationattribute-class-[fsharp].md +++ b/docs/conceptual/core.customoperationattribute-class-[fsharp].md @@ -36,6 +36,7 @@ CustomOperationAttribute member this.IsLikeZip : bool with get, set member this.MaintainsVariableSpace : bool with get, set member this.MaintainsVariableSpaceUsingBind : bool with get, set + member this.JoinConditionWord : string with get, set member this.Name : string end ```