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/ModularPipelines/Context/IBase64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ public interface IBase64
string ToBase64String(byte[] bytes);

/// <summary>
/// Converts a bas64 encoded string to a decoded standard string.
/// Converts a base64 encoded string to a decoded standard string.
/// </summary>
/// <param name="base64Input">The base64 string to decode.</param>
/// <returns>The unencoded string.</returns>
string FromBase64String(string base64Input) => FromBase64String(base64Input, Encoding.UTF8);

/// <summary>
/// Converts a bas64 encoded string to a decoded standard string.
/// Converts a base64 encoded string to a decoded standard string.
/// </summary>
/// <param name="base64Input">The base64 string to decode.</param>
/// <param name="encoding">The string encoding.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/ModularPipelines/Context/IEnvironmentContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public interface IEnvironmentContext
public Version OperatingSystemVersion { get; }

/// <summary>
/// Gets a value indicating whether whether the current operating system is 64 bit.
/// Gets a value indicating whether the current operating system is 64-bit.
/// </summary>
public bool Is64BitOperatingSystem { get; }

Expand Down
4 changes: 2 additions & 2 deletions src/ModularPipelines/Context/IPipelineEncoding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public interface IPipelineEncoding
IJson Json { get; }

/// <summary>
/// Gets helpers for convering XML.
/// Gets helpers for converting XML.
/// </summary>
IXml Xml { get; }

/// <summary>
/// Gets helpers for convering YAML.
/// Gets helpers for converting YAML.
/// </summary>
IYaml Yaml { get; }

Expand Down
2 changes: 1 addition & 1 deletion src/ModularPipelines/Options/HttpOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace ModularPipelines.Options;
public record HttpOptions(HttpRequestMessage HttpRequestMessage)
{
/// <summary>
/// Gets or sets and sets an optional HttpClient for handling the request.
/// Gets or sets an optional HttpClient for handling the request.
/// </summary>
public HttpClient? HttpClient { get; set; }

Expand Down
Loading