Skip to content

Commit 3d3d344

Browse files
committed
Change "almost always never null" to "almost always non-null"
1 parent 79bb5ab commit 3d3d344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tracer/src/Datadog.Trace.Tools.Analyzers/DuckTypeAnalyzer/DuckDiagnostics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class DuckDiagnostics
2020
internal static readonly DiagnosticDescriptor ADuckIsNeverNullRule = new(
2121
DuckTypeNullCheckDiagnosticId,
2222
title: "Checking IDuckType for null",
23-
messageFormat: "The IDuckType is almost always never null, check the Instance for null to ensure we have access to the ducked object",
23+
messageFormat: "The IDuckType is almost always non-null, check the Instance for null to ensure we have access to the duck typed object",
2424
category: "CodeQuality",
2525
defaultSeverity: DiagnosticSeverity.Error,
2626
isEnabledByDefault: true);

0 commit comments

Comments
 (0)