diff --git a/README.md b/README.md index 227d9652..d2cd83b9 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ Queries are executed through the `GelClientPool` by using different helper methods. Your choice of method is dependent on the kind of query you're making, better known as [cardinality](https://www.geldata.com/docs/clients/dotnet/index#cardinality-and-return-types). -Query helper methods will expect a generic `T` type which is the [.NET version of an Gel type](https://www.edgedb.com/docs/clients/dotnet/datatypes#datatypes): +Query helper methods will expect a generic `T` type which is the [.NET version of an Gel type](https://www.geldata.com/docs/clients/dotnet/datatypes#datatypes): ```cs var result = await client.QueryAsync("select 2 + 2"); // returns 4 diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/AuthenticationStatus.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/AuthenticationStatus.cs index 5dd454be..c40437d6 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/AuthenticationStatus.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/AuthenticationStatus.cs @@ -3,11 +3,11 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// /// Represents the /// AuthenticationOK, -/// AuthenticationSASL, -/// AuthenticationSASLContinue +/// AuthenticationSASL, +/// AuthenticationSASLContinue /// , /// and -/// AuthenticationSASLFinal +/// AuthenticationSASLFinal /// packets. /// internal readonly struct AuthenticationStatus : IReceiveable diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/CommandComplete.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/CommandComplete.cs index 054b4132..282fc856 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/CommandComplete.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/CommandComplete.cs @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// /// Represents the -/// Command Complete packet +/// Command Complete packet /// internal readonly struct CommandComplete : IReceiveable { diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/DumpBlock.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/DumpBlock.cs index 7a5f1115..73602a49 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/DumpBlock.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/DumpBlock.cs @@ -4,7 +4,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// -/// Represents the Dump Block +/// Represents the Dump Block /// packet. /// internal readonly struct DumpBlock : IReceiveable diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ErrorResponse.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ErrorResponse.cs index 442371ea..3670c3be 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ErrorResponse.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ErrorResponse.cs @@ -4,7 +4,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// /// Represents the -/// Error Response packet. +/// Error Response packet. /// #pragma warning disable CS0618 // Type or member is obsolete internal readonly struct ErrorResponse : IReceiveable, IExecuteError, IProtocolError diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/LogMessage.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/LogMessage.cs index b8506ede..80fdfdd8 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/LogMessage.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/LogMessage.cs @@ -1,7 +1,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// -/// Represents the Log Message +/// Represents the Log Message /// packet. /// internal readonly struct LogMessage : IReceiveable diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ParameterStatus.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ParameterStatus.cs index ff4bd27e..45b2eed7 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ParameterStatus.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ParameterStatus.cs @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// /// Represents the -/// Parameter Status packet. +/// Parameter Status packet. /// internal readonly struct ParameterStatus : IReceiveable { diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerHandshake.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerHandshake.cs index 1d5a326e..52b5edbd 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerHandshake.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerHandshake.cs @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// /// Represents the -/// Server Handshake packet. +/// Server Handshake packet. /// internal readonly struct ServerHandshake : IReceiveable { diff --git a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerKeyData.cs b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerKeyData.cs index dc42f4e8..4288d88f 100644 --- a/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerKeyData.cs +++ b/src/Gel.Net.Driver/Binary/Protocol/V1.0/Receivables/ServerKeyData.cs @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets; /// /// Represents the -/// Server Key Data packet. +/// Server Key Data packet. /// internal readonly struct ServerKeyData : IReceiveable { diff --git a/src/Gel.Net.Driver/Models/ServerErrorCodes.cs b/src/Gel.Net.Driver/Models/ServerErrorCodes.cs index bb98e589..070f06ea 100644 --- a/src/Gel.Net.Driver/Models/ServerErrorCodes.cs +++ b/src/Gel.Net.Driver/Models/ServerErrorCodes.cs @@ -2,7 +2,7 @@ namespace Gel; /// /// Represents the different error codes sent by the server defined -/// in the docs. +/// in the docs. /// public enum ServerErrorCodes : uint {