Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Common/src/Logging/BootstrapLoggerFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static BootstrapLoggerFactory CreateConsole()
/// Creates a new <see cref="BootstrapLoggerFactory" /> that writes to the console.
/// </summary>
/// <param name="configure">
/// Enables to further configure the bootstrap logger from code.
/// Enables further configuring the bootstrap logger from code.
/// </param>
public static BootstrapLoggerFactory CreateConsole(Action<ILoggingBuilder> configure)
{
Expand All @@ -75,7 +75,7 @@ public static BootstrapLoggerFactory CreateConsole(Action<ILoggingBuilder> confi
/// Creates a new empty <see cref="BootstrapLoggerFactory" />.
/// </summary>
/// <param name="configure">
/// Enables to fully configure the bootstrap logger from code.
/// Enables fully configuring the bootstrap logger from code.
/// </param>
public static BootstrapLoggerFactory CreateEmpty(Action<ILoggingBuilder> configure)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/test/TestResources/CapturingLoggerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Steeltoe.Common.TestResources;

/// <summary>
/// Enables to capture log messages in tests.
/// Enables capturing log messages in tests.
/// </summary>
public sealed class CapturingLoggerProvider : ILoggerProvider
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/test/TestResources/EnvironmentVariableScope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Steeltoe.Common.TestResources;

/// <summary>
/// Enables to temporarily set/change an environment variable from a test. The original value is restored when disposed.
/// Enables temporarily setting/changing an environment variable from a test. The original value is restored when disposed.
/// </summary>
public sealed class EnvironmentVariableScope : IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/test/TestResources/TestFailureTracer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Steeltoe.Common.TestResources;

/// <summary>
/// Enables to capture log output in failing tests. Call <see cref="Register" /> or use <see cref="LoggerFactory" /> to hook up. When an assertion fails,
/// Enables capturing log output in failing tests. Call <see cref="Register" /> or use <see cref="LoggerFactory" /> to hook up. When an assertion fails,
/// the log output is included in the exception message.
/// </summary>
public sealed class TestFailureTracer : IDisposable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static IConfigurationBuilder AddConfigServer(this IConfigurationBuilder b
/// The <see cref="IConfigurationBuilder" /> to add configuration to.
/// </param>
/// <param name="options">
/// Enables to configure Config Server from code.
/// Enables configuring Config Server from code.
/// </param>
/// <param name="loggerFactory">
/// Used for internal logging. Pass <see cref="NullLoggerFactory.Instance" /> to disable logging.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Task StoppedAsync(CancellationToken cancellationToken)
}

/// <summary>
/// Enables to trigger change in <see cref="OptionsMonitor{EurekaInstanceOptions}" />.
/// Enables triggering change in <see cref="OptionsMonitor{EurekaInstanceOptions}" />.
/// </summary>
internal sealed class EurekaInstanceOptionsChangeTokenSource : IOptionsChangeTokenSource<EurekaInstanceOptions>
{
Expand Down
2 changes: 1 addition & 1 deletion src/Logging/src/Abstractions/DynamicLoggerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Steeltoe.Logging;

/// <summary>
/// Provides access to <see cref="ILogger" /> categories and their minimum log levels and enables to decorate log messages.
/// Provides access to <see cref="ILogger" /> categories and their minimum log levels and enables decorating log messages.
/// </summary>
public abstract class DynamicLoggerProvider : IDynamicLoggerProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static ILoggingBuilder AddDynamicSerilog(this ILoggingBuilder builder)
/// The <see cref="ILoggingBuilder" /> to configure.
/// </param>
/// <param name="serilogConfiguration">
/// Enables to configure Serilog from code instead of configuration.
/// Enables configuring Serilog from code instead of configuration.
/// </param>
/// <returns>
/// The incoming <paramref name="builder" /> so that additional calls can be chained.
Expand Down Expand Up @@ -69,7 +69,7 @@ public static ILoggingBuilder AddDynamicSerilog(this ILoggingBuilder builder, bo
/// The <see cref="ILoggingBuilder" /> to configure.
/// </param>
/// <param name="serilogConfiguration">
/// Enables to configure Serilog from code instead of configuration.
/// Enables configuring Serilog from code instead of configuration.
/// </param>
/// <param name="preserveDefaultConsole">
/// When set to <c>true</c>, does not remove existing logger providers.
Expand Down
4 changes: 2 additions & 2 deletions src/Logging/src/DynamicSerilog/SerilogOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public sealed class SerilogOptions
public MinimumLevel? MinimumLevel { get; set; }

/// <summary>
/// Enables to bind from configuration.
/// Enables binding from configuration.
/// </summary>
/// <param name="configuration">
/// The configuration to bind from.
Expand Down Expand Up @@ -56,7 +56,7 @@ internal void SetSerilogOptions(IConfiguration configuration)
}

/// <summary>
/// Enables to configure programmatically.
/// Enables configuring programmatically.
/// </summary>
/// <param name="loggerConfiguration">
/// The instance to obtain settings from.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Steeltoe.Management.Endpoint.Configuration;

/// <summary>
/// Enables to register multiple typed providers to enumerate all <see cref="IOptionsMonitor{TOptions}" />s for the various
/// Enables registering multiple typed providers to enumerate all <see cref="IOptionsMonitor{TOptions}" />s for the various
/// <see cref="EndpointOptions" /> types.
/// </summary>
internal interface IEndpointOptionsMonitorProvider
Expand Down