Skip to content

Commit 0812a77

Browse files
thomhurstclaude
andauthored
docs: Fix documentation typos (#1654)
* chore: Add .worktrees/ to .gitignore for parallel development 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: Fix 'bas64' typo in IBase64.cs (#1604) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: Fix 'convering' typos in IPipelineEncoding.cs (#1638) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: Fix duplicate 'whether' and '64 bit' in IEnvironmentContext.cs (#1646) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: Fix 'Gets or sets and sets' in HttpOptions.cs (#1616) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 294623d commit 0812a77

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/ModularPipelines/Context/IBase64.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ public interface IBase64
2727
string ToBase64String(byte[] bytes);
2828

2929
/// <summary>
30-
/// Converts a bas64 encoded string to a decoded standard string.
30+
/// Converts a base64 encoded string to a decoded standard string.
3131
/// </summary>
3232
/// <param name="base64Input">The base64 string to decode.</param>
3333
/// <returns>The unencoded string.</returns>
3434
string FromBase64String(string base64Input) => FromBase64String(base64Input, Encoding.UTF8);
3535

3636
/// <summary>
37-
/// Converts a bas64 encoded string to a decoded standard string.
37+
/// Converts a base64 encoded string to a decoded standard string.
3838
/// </summary>
3939
/// <param name="base64Input">The base64 string to decode.</param>
4040
/// <param name="encoding">The string encoding.</param>

src/ModularPipelines/Context/IEnvironmentContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface IEnvironmentContext
2525
public Version OperatingSystemVersion { get; }
2626

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

src/ModularPipelines/Context/IPipelineEncoding.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ public interface IPipelineEncoding
1717
IJson Json { get; }
1818

1919
/// <summary>
20-
/// Gets helpers for convering XML.
20+
/// Gets helpers for converting XML.
2121
/// </summary>
2222
IXml Xml { get; }
2323

2424
/// <summary>
25-
/// Gets helpers for convering YAML.
25+
/// Gets helpers for converting YAML.
2626
/// </summary>
2727
IYaml Yaml { get; }
2828

src/ModularPipelines/Options/HttpOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace ModularPipelines.Options;
99
public record HttpOptions(HttpRequestMessage HttpRequestMessage)
1010
{
1111
/// <summary>
12-
/// Gets or sets and sets an optional HttpClient for handling the request.
12+
/// Gets or sets an optional HttpClient for handling the request.
1313
/// </summary>
1414
public HttpClient? HttpClient { get; set; }
1515

0 commit comments

Comments
 (0)