Skip to content

Commit 2e546e0

Browse files
xperiandriViktor Tochonov
authored andcommitted
Fixed XML comments on LINQ Tracker
1 parent cd08ffb commit 2e546e0

File tree

1 file changed

+5
-1
lines changed
  • src/FSharp.Data.GraphQL.Server

1 file changed

+5
-1
lines changed

src/FSharp.Data.GraphQL.Server/Linq.fs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,16 @@ type Track =
6868
/// of all properties and subproperties accessed in provided
6969
/// ExecutionInfo with top level argument given as a root.
7070
type Tracker =
71+
/// <summary>
7172
/// Leaf of the tree. Marks a direct field/property access with no sub-trees.
7273
/// Consists of <see cref="Track"/> record and (neglible in this case) list of arguments.
74+
/// </summary>
7375
| Direct of Track * Arg list
74-
/// Marks branched field/property access - property value withh possible sub-trees.
76+
/// <summary>
77+
/// Marks branched field/property access - property value with possible sub-trees.
7578
/// Consists of <see cref="Track"/> record list of arguments used to parametrize GraphQL
7679
/// field definition and set of subtrees.
80+
/// </summary>
7781
| Compose of Track * Arg list * Set<Tracker>
7882
member x.Track =
7983
match x with

0 commit comments

Comments
 (0)