Issue
The IPipelineEncoding interface has typos in the XML documentation where "convering" should be "converting".
Location
- File:
src/ModularPipelines/Context/IPipelineEncoding.cs
- Lines: 20 and 25
Current Code
/// <summary>
/// Gets helpers for convering XML. // <-- typo
/// </summary>
IXml Xml { get; }
/// <summary>
/// Gets helpers for convering YAML. // <-- typo
/// </summary>
IYaml Yaml { get; }
Note
Line 16 correctly uses "converting" for the JSON property:
/// <summary>
/// Gets helpers for converting JSON. // <-- correct
/// </summary>
IJson Json { get; }
Suggested Fix
/// <summary>
/// Gets helpers for converting XML.
/// </summary>
IXml Xml { get; }
/// <summary>
/// Gets helpers for converting YAML.
/// </summary>
IYaml Yaml { get; }
Why This Matters
Documentation typos affect professional perception and create inconsistency within the same interface.
Issue
The
IPipelineEncodinginterface has typos in the XML documentation where "convering" should be "converting".Location
src/ModularPipelines/Context/IPipelineEncoding.csCurrent Code
Note
Line 16 correctly uses "converting" for the JSON property:
Suggested Fix
Why This Matters
Documentation typos affect professional perception and create inconsistency within the same interface.