We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1022daa commit 85b69caCopy full SHA for 85b69ca
CheckedExceptions/HeuristicRules.cs
@@ -6,7 +6,7 @@ public static bool IsForGetter(string name) => name is not null &&
6
(name.Contains(" get ") ||
7
name.Contains(" gets ") ||
8
name.Contains(" getting ") ||
9
- name.Contains(" retrieved "));
+ name.Contains(" retrieved"));
10
11
public static bool IsForSetter(string name) => name is not null && (
12
name.Contains(" set ") ||
0 commit comments