Implemented minor documentation improvements

Several minor documentation improvements suggested by copilot have been implemented.
This commit is contained in:
Kornelius Rohrschneider 2025-11-02 14:23:01 +01:00
parent 96cf48e65a
commit f200447761
No known key found for this signature in database
GPG key ID: 51CF1ED1E24F7D78
2 changed files with 4 additions and 4 deletions

View file

@ -103,7 +103,7 @@ Default: 1
- **Normalize to UTC** - Convert all dates to UTC before exporting.
- **Export exists** Controls what the exporter should do if the current channel had previously been exported.
- **Export exists** - Controls what the exporter should do if the current channel had previously been exported.
Default: Abort
- **Search for existing export** Whether the exporter should search in the entire target directory to determine whether

View file

@ -52,7 +52,7 @@ public abstract class ProgressLogger
+ $" {updateExportSuccessCount} existing channel export(s).";
if (updateExportSkipCount > 0)
exportSummary[ExportResult.UpdateExportSkip] =
$"Skipped {updateExportSkipCount} existing up-to-date channel export(s)";
$"Skipped {updateExportSkipCount} existing up-to-date channel export(s).";
if (exportErrorCount > 0)
exportSummary[ExportResult.ExportError] =
$"Failed to export {exportErrorCount} channel(s) (see prior error message(s)).";
@ -99,7 +99,7 @@ public abstract class ProgressLogger
/// Logs an error message about the current channel export.
/// If this is called, the count of channels that failed is automatically increased.
/// </summary>
/// <param name="request">The request specifying the current channel export.</param>
/// <param name="request">The request specifying the current channel export, if it can be accessed.</param>
/// <param name="message">The error message about the current channel export that should be logged.</param>
public abstract void LogError(ExportRequest request, string message);
public abstract void LogError(ExportRequest? request, string message);
}