chore: apply dotnet format fixes

This commit is contained in:
Louis Seubert 2026-05-09 20:08:27 +02:00
commit cdc6cfbf96
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
2 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@ public partial class BufferedCommandResult : CommandResult
public partial class BufferedCommandResult
{
/// <summary>
/// Converts the result to a string value that corresponds to the <see cref="BufferedCommandResult.StandardOutput" /> property.
/// Converts the result to a string value that corresponds to the <see cref="StandardOutput" /> property.
/// </summary>
public static implicit operator string(BufferedCommandResult result)
{

View file

@ -47,7 +47,7 @@ public partial class CommandResult
public partial class CommandResult
{
/// <summary>
/// Converts the result to an integer value that corresponds to the <see cref="CommandResult.ExitCode" /> property.
/// Converts the result to an integer value that corresponds to the <see cref="ExitCode" /> property.
/// </summary>
public static implicit operator int(CommandResult result)
{
@ -55,7 +55,7 @@ public partial class CommandResult
}
/// <summary>
/// Converts the result to a boolean value that corresponds to the <see cref="CommandResult.IsSuccess" /> property.
/// Converts the result to a boolean value that corresponds to the <see cref="IsSuccess" /> property.
/// </summary>
public static implicit operator bool(CommandResult result)
{