Skip to content

Commit 3b6e883

Browse files
committed
Fixed incorrectly applied XML comments
1 parent 7a5462f commit 3b6e883

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

src/FSharp.Data.GraphQL.Client/BaseTypes.fs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ open System.ComponentModel
1414

1515
/// Contains information about a field on the query.
1616
type SchemaFieldInfo =
17-
/// Gets the alias or the name of the field.
18-
{ AliasOrName : string
17+
{ /// Gets the alias or the name of the field.
18+
AliasOrName : string
1919
/// Gets the introspection type information of the field.
2020
SchemaTypeRef : IntrospectionTypeRef
2121
/// Gets information about fields of this field, if it is an object type.
@@ -26,8 +26,8 @@ type TypeName = string
2626

2727
/// Contains data about a GQL operation error.
2828
type OperationError =
29-
/// The description of the error that happened in the operation.
30-
{ Message : string
29+
{ /// The description of the error that happened in the operation.
30+
Message : string
3131
/// The path to the field that produced the error while resolving its value.
3232
Path : obj [] }
3333

@@ -86,8 +86,8 @@ type EnumBase (name : string, value : string) =
8686

8787
/// Contains information about a GraphQLProvider record property.
8888
type RecordProperty =
89-
/// Gets the name of the record property.
90-
{ Name : string
89+
{ /// Gets the name of the record property.
90+
Name : string
9191
/// Gets the value of the record property.
9292
Value : obj }
9393

src/FSharp.Data.GraphQL.Client/GraphQLClient.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ open System.Threading
1414

1515
/// A requrest object for making GraphQL calls using the GraphQL client module.
1616
type GraphQLRequest =
17-
/// Gets the URL of the GraphQL server which will be called.
18-
{ ServerUrl : string
17+
{ /// Gets the URL of the GraphQL server which will be called.
18+
ServerUrl : string
1919
/// Gets custom HTTP Headers to pass with each call using this request.
2020
HttpHeaders: seq<string * string>
2121
/// Gets the name of the operation that should run on the server.

src/FSharp.Data.GraphQL.Client/GraphQLProviderRuntimeContext.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ type GraphQLRuntimeContextInfo =
1212

1313
/// A context for running operations using the GraphQLProvider in runtime.
1414
type GraphQLProviderRuntimeContext =
15-
/// Gets the URL of the server that this context refers to.
16-
{ ServerUrl : string
15+
{ /// Gets the URL of the server that this context refers to.
16+
ServerUrl : string
1717
/// Gets the HTTP headers used for calls to the server that this context refers to.
1818
HttpHeaders : seq<string * string>
1919
/// Gets the connection component used to make calls to the server.

src/FSharp.Data.GraphQL.Shared/TypeSystem.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -747,8 +747,8 @@ and ExecutionInfoKind =
747747

748748
/// Buffered stream options. Used to specify how the buffer will behavior in a stream.
749749
and BufferedStreamOptions =
750-
/// The maximum time in milliseconds that the buffer will be filled before being sent to the subscriber.
751-
{ Interval : int option
750+
{ /// The maximum time in milliseconds that the buffer will be filled before being sent to the subscriber.
751+
Interval : int option
752752
/// The maximum number of items that will be buffered before being sent to the subscriber.
753753
PreferredBatchSize : int option }
754754

@@ -919,7 +919,7 @@ and FieldDef =
919919
abstract Metadata : Metadata
920920
/// Field resolution function.
921921
abstract Resolve : Resolve
922-
/// INTERNAL API: Compiled field executor. To be set only by the runtime.
922+
// INTERNAL API: Compiled field executor. To be set only by the runtime.
923923
inherit IEquatable<FieldDef>
924924
end
925925

0 commit comments

Comments
 (0)