diff --git a/src/dscanner/analysis/trust_too_much.d b/src/dscanner/analysis/trust_too_much.d index 67ce8da..7e469dd 100644 --- a/src/dscanner/analysis/trust_too_much.d +++ b/src/dscanner/analysis/trust_too_much.d @@ -19,7 +19,7 @@ class TrustTooMuchCheck : BaseAnalyzer private: static immutable MESSAGE = "Trusting a whole scope is a bad idea, " ~ - "`@trusted` should only be attached to a single function"; + "`@trusted` should only be attached to the functions individually"; static immutable string KEY = "dscanner.trust_too_much"; bool checkAtAttribute = true;