From cc780e839da75f00214c821fb58345bdc7526787 Mon Sep 17 00:00:00 2001 From: Vladimir Pecanac Date: Sun, 13 Sep 2026 20:41:15 +0200 Subject: [PATCH] Quartz vs Hangfire: replace the em dashes in three sample comments --- .../QuartzVsHangfire/HangfireSample/HangfireMonitoring.cs | 2 +- .../QuartzVsHangfire/QuartzSample/LoggingJobListener.cs | 2 +- .../QuartzVsHangfire/QuartzSample/QuartzStorageConfig.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/HangfireSample/HangfireMonitoring.cs b/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/HangfireSample/HangfireMonitoring.cs index 0841a8b31..de3bf692c 100644 --- a/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/HangfireSample/HangfireMonitoring.cs +++ b/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/HangfireSample/HangfireMonitoring.cs @@ -2,7 +2,7 @@ namespace QuartzVsHangfire.HangfireSample; -// Hangfire ships a queryable monitoring API — the same data the drop-in +// Hangfire ships a queryable monitoring API, the same data the drop-in // dashboard renders. Wiring the dashboard itself is one line in Startup: // app.UseHangfireDashboard("/hangfire"); // needs Hangfire.AspNetCore public static class HangfireMonitoring diff --git a/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/LoggingJobListener.cs b/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/LoggingJobListener.cs index e502170e5..0cdb7f349 100644 --- a/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/LoggingJobListener.cs +++ b/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/LoggingJobListener.cs @@ -3,7 +3,7 @@ namespace QuartzVsHangfire.QuartzSample; // Quartz.NET has no dashboard. Monitoring is a listener we attach to the -// scheduler. This one counts completed jobs — the hook a custom UI would use. +// scheduler. This one counts completed jobs, the hook a custom UI would use. public class LoggingJobListener : IJobListener { public string Name => "logging-job-listener"; diff --git a/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/QuartzStorageConfig.cs b/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/QuartzStorageConfig.cs index fe8d17a10..3cf73509a 100644 --- a/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/QuartzStorageConfig.cs +++ b/dotnet-client-libraries/QuartzVsHangfire/QuartzVsHangfire/QuartzSample/QuartzStorageConfig.cs @@ -5,7 +5,7 @@ namespace QuartzVsHangfire.QuartzSample; // Quartz.NET runs fine with no database: RAMJobStore is the default. Durable -// schedules are opt-in — we swap the job store type for an ADO.NET store. +// schedules are opt-in, and we swap the job store type for an ADO.NET store. public static class QuartzStorageConfig { public static Task CreateInMemorySchedulerAsync()