From f6d1ae2b9765b4f90984e88be8baaa3654c5509c Mon Sep 17 00:00:00 2001 From: dexterousdhruv Date: Thu, 24 Oct 2024 16:23:53 +0530 Subject: [PATCH] Corrected param name in comment. --- Mimir/GraphQL/Queries/Query.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mimir/GraphQL/Queries/Query.cs b/Mimir/GraphQL/Queries/Query.cs index ef5b1558..50a765bb 100644 --- a/Mimir/GraphQL/Queries/Query.cs +++ b/Mimir/GraphQL/Queries/Query.cs @@ -120,7 +120,7 @@ public async Task GetMetadataAsync(string collectionName, [Ser /// /// Get an pet state by avatar address. /// - /// The address of the agent. + /// The address of the avatar. /// The agent state public async Task GetPetAsync(Address avatarAddress, [Service] PetRepository repo) => (await repo.GetByAvatarAddressAsync(avatarAddress)).Object;