Skip to content

Commit 85b69ca

Browse files
Update heuristics
1 parent 1022daa commit 85b69ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CheckedExceptions/HeuristicRules.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static bool IsForGetter(string name) => name is not null &&
66
(name.Contains(" get ") ||
77
name.Contains(" gets ") ||
88
name.Contains(" getting ") ||
9-
name.Contains(" retrieved "));
9+
name.Contains(" retrieved"));
1010

1111
public static bool IsForSetter(string name) => name is not null && (
1212
name.Contains(" set ") ||

0 commit comments

Comments
 (0)