From 11f3b6be2d67d766efa8d756ea2ece82344980d6 Mon Sep 17 00:00:00 2001 From: Pete Gautier Date: Tue, 4 Oct 2022 17:05:56 -0700 Subject: [PATCH] fix: correct documentation errors --- src/Momento.Sdk/Auth/EnvMomentoTokenProvider.cs | 2 +- src/Momento.Sdk/Responses/CreateCacheResponse.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Momento.Sdk/Auth/EnvMomentoTokenProvider.cs b/src/Momento.Sdk/Auth/EnvMomentoTokenProvider.cs index a81463fa..05048344 100644 --- a/src/Momento.Sdk/Auth/EnvMomentoTokenProvider.cs +++ b/src/Momento.Sdk/Auth/EnvMomentoTokenProvider.cs @@ -12,8 +12,8 @@ public class EnvMomentoTokenProvider : ICredentialProvider /// /// Reads and parses a JWT token stored as an environment variable. - /// Name of the environment variable that contains the JWT token. /// + /// Name of the environment variable that contains the JWT token. public EnvMomentoTokenProvider(string name) { AuthToken = Environment.GetEnvironmentVariable(name); diff --git a/src/Momento.Sdk/Responses/CreateCacheResponse.cs b/src/Momento.Sdk/Responses/CreateCacheResponse.cs index 04520321..1983d5fd 100644 --- a/src/Momento.Sdk/Responses/CreateCacheResponse.cs +++ b/src/Momento.Sdk/Responses/CreateCacheResponse.cs @@ -26,6 +26,7 @@ public class Success : CreateCacheResponse { } public class CacheAlreadyExists : CreateCacheResponse { } + /// public class Error : CreateCacheResponse { private readonly SdkException _error;