Skip to content

Commit

Permalink
fix: correct documentation errors (#274)
Browse files Browse the repository at this point in the history
Co-authored-by: Pete Gautier <[email protected]>
  • Loading branch information
pgautier404 and pgautier404 authored Oct 5, 2022
1 parent 058263d commit 779825b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Momento.Sdk/Auth/EnvMomentoTokenProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class EnvMomentoTokenProvider : ICredentialProvider

/// <summary>
/// Reads and parses a JWT token stored as an environment variable.
/// <param name="name">Name of the environment variable that contains the JWT token.</param>
/// </summary>
/// <param name="name">Name of the environment variable that contains the JWT token.</param>
public EnvMomentoTokenProvider(string name)
{
AuthToken = Environment.GetEnvironmentVariable(name);
Expand Down
1 change: 1 addition & 0 deletions src/Momento.Sdk/Responses/CreateCacheResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public class Success : CreateCacheResponse { }

public class CacheAlreadyExists : CreateCacheResponse { }

/// <include file="../docs.xml" path='docs/class[@name="Error"]/description/*' />
public class Error : CreateCacheResponse
{
private readonly SdkException _error;
Expand Down

0 comments on commit 779825b

Please sign in to comment.