Skip to content

Commit

Permalink
Update more links.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnwpark committed Feb 22, 2025
1 parent fc91700 commit 9ba6108
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<long>("select 2 + 2"); // returns 4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ namespace Gel.Binary.Protocol.V1._0.Packets;
/// <summary>
/// Represents the
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#authenticationok">AuthenticationOK</see>,
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#authenticationsasl">AuthenticationSASL</see>,
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#authenticationsaslcontinue">AuthenticationSASLContinue</see>
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#authenticationsasl">AuthenticationSASL</see>,
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#authenticationsaslcontinue">AuthenticationSASLContinue</see>
/// ,
/// and
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#authenticationsaslfinal">AuthenticationSASLFinal</see>
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#authenticationsaslfinal">AuthenticationSASLFinal</see>
/// packets.
/// </summary>
internal readonly struct AuthenticationStatus : IReceiveable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#commandcomplete">Command Complete</see> packet
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#commandcomplete">Command Complete</see> packet
/// </summary>
internal readonly struct CommandComplete : IReceiveable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the <see href="https://www.edgedb.com/docs/reference/protocol/messages#dump-block">Dump Block</see>
/// Represents the <see href="https://www.geldata.com/docs/reference/protocol/messages#dump-block">Dump Block</see>
/// packet.
/// </summary>
internal readonly struct DumpBlock : IReceiveable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#errorresponse">Error Response</see> packet.
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#errorresponse">Error Response</see> packet.
/// </summary>
#pragma warning disable CS0618 // Type or member is obsolete
internal readonly struct ErrorResponse : IReceiveable, IExecuteError, IProtocolError
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the <see href="https://www.edgedb.com/docs/reference/protocol/messages#logmessage">Log Message</see>
/// Represents the <see href="https://www.geldata.com/docs/reference/protocol/messages#logmessage">Log Message</see>
/// packet.
/// </summary>
internal readonly struct LogMessage : IReceiveable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#parameterstatus">Parameter Status</see> packet.
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#parameterstatus">Parameter Status</see> packet.
/// </summary>
internal readonly struct ParameterStatus : IReceiveable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#serverhandshake">Server Handshake</see> packet.
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#serverhandshake">Server Handshake</see> packet.
/// </summary>
internal readonly struct ServerHandshake : IReceiveable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Gel.Binary.Protocol.V1._0.Packets;

/// <summary>
/// Represents the
/// <see href="https://www.edgedb.com/docs/reference/protocol/messages#serverkeydata">Server Key Data</see> packet.
/// <see href="https://www.geldata.com/docs/reference/protocol/messages#serverkeydata">Server Key Data</see> packet.
/// </summary>
internal readonly struct ServerKeyData : IReceiveable
{
Expand Down
2 changes: 1 addition & 1 deletion src/Gel.Net.Driver/Models/ServerErrorCodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Gel;

/// <summary>
/// Represents the different error codes sent by the server defined
/// <seealso href="https://www.edgedb.com/docs/reference/protocol/errors#error-codes">in the docs.</seealso>
/// <seealso href="https://www.geldata.com/docs/reference/protocol/errors#error-codes">in the docs.</seealso>
/// </summary>
public enum ServerErrorCodes : uint
{
Expand Down

0 comments on commit 9ba6108

Please sign in to comment.