Skip to content

Commit

Permalink
Minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
adams85 committed Aug 21, 2024
1 parent 2394e00 commit 6366315
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ var isMyAwesomeFeatureEnabled = await client.GetValueAsync(

## Sample/Demo apps
* [Sample Console App](https://github.com/configcat/.net-sdk/tree/master/samples/ConsoleApp)
* [Sample Multi Page Web App](https://github.com/configcat/.net-sdk/tree/master/samples/ASP.NETCore)
* [Sample Single Page Web App](https://github.com/configcat/.net-sdk/tree/master/samples/BlazorWasm)
* [Sample Multi-page Web App](https://github.com/configcat/.net-sdk/tree/master/samples/ASP.NETCore)
* [Sample Single-page Web App](https://github.com/configcat/.net-sdk/tree/master/samples/BlazorWasm)
* [Sample Mobile/Windows Store App](https://github.com/configcat/.net-sdk/tree/master/samples/MAUI)

## Polling Modes
Expand Down
6 changes: 3 additions & 3 deletions samples/ASP.NETCore/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Sample .NET Core WebApp app
# Sample ASP.NET Core MVC app

This is a simple .NET Core web application to demonstrate how to use the ConfigCat SDK.
This is a simple [ASP.NET Core MVC](https://learn.microsoft.com/en-us/aspnet/core/mvc) web application to demonstrate how to use the ConfigCat SDK.

1. Install the [.NET SDK](https://dotnet.microsoft.com/download)
1. Install [.NET](https://dotnet.microsoft.com/download)
2. Change dir to `/WebApplication`
```bash
cd WebApplication
Expand Down
2 changes: 1 addition & 1 deletion samples/BlazorWasm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a simple [ASP.NET Core Blazor WebAssembly](https://learn.microsoft.com/en-us/aspnet/core/blazor) application to demonstrate how to use the ConfigCat SDK.

1. Install the [.NET SDK](https://dotnet.microsoft.com/download)
1. Install [.NET](https://dotnet.microsoft.com/download)
2. Run app
```bash
dotnet run -- urls=http://localhost:5000
Expand Down
2 changes: 1 addition & 1 deletion samples/ConsoleApp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a simple .NET Console application to demonstrate how to use the ConfigCat SDK.

1. Install the [.NET SDK](https://dotnet.microsoft.com/download)
1. Install [.NET](https://dotnet.microsoft.com/download)

2. Run sample app:
```bash
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigCatClient/ConfigCatClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed class ConfigCatClient : IConfigCatClient
/// Returns an object that can be used to configure the SDK to work on platforms that are not fully standards compliant.
/// </summary>
/// <remarks>
/// Configuration is only possible before the first <see cref="ConfigCatClient"/> instance is created.
/// Configuration is only possible before the first instance of <see cref="ConfigCatClient"/> is created.
/// </remarks>
public
#else
Expand Down
4 changes: 2 additions & 2 deletions src/ConfigCatClient/ConfigService/FetchErrorException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ namespace ConfigCat.Client;
public abstract class FetchErrorException : Exception
{
/// <summary>
/// Creates an instance of the <see cref="FetchErrorException"/> struct which indicates that the operation timed out.
/// Creates an instance of the <see cref="FetchErrorException"/> class which indicates that the operation timed out.
/// </summary>
public static FetchErrorException Timeout(TimeSpan timeout, Exception? innerException = null)
=> new Timeout_($"Request timed out. Timeout value: {timeout}", timeout, innerException);

/// <summary>
/// Creates an instance of the <see cref="FetchErrorException"/> struct which indicates that the operation failed due to a network or protocol error.
/// Creates an instance of the <see cref="FetchErrorException"/> class which indicates that the operation failed due to a network or protocol error.
/// </summary>
public static FetchErrorException Failure(WebExceptionStatus? status, Exception? innerException = null)
=> new Failure_("Request failed due to a network or protocol error.", status, innerException);
Expand Down

0 comments on commit 6366315

Please sign in to comment.