From d4d8db4025a633d2484bd27e64a8c6d2ebc547eb Mon Sep 17 00:00:00 2001 From: Dulma Churchill Date: Tue, 13 Jun 2017 09:13:46 -0700 Subject: [PATCH] [linters] Adding some missing dots to the suggestion sentences in the default linters. Reviewed By: martinoluca Differential Revision: D5237144 fbshipit-source-id: f82e75e --- infer/lib/linter_rules/linters.al | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infer/lib/linter_rules/linters.al b/infer/lib/linter_rules/linters.al index 0206b513c..5d12d2a33 100644 --- a/infer/lib/linter_rules/linters.al +++ b/infer/lib/linter_rules/linters.al @@ -18,7 +18,7 @@ DEFINE-CHECKER DIRECT_ATOMIC_PROPERTY_ACCESS = { HOLDS-IN-NODE ObjCIvarRefExpr; SET message = "Direct access to ivar %ivar_name% of an atomic property"; - SET suggestion = "Accessing an ivar of an atomic property makes the property nonatomic"; + SET suggestion = "Accessing an ivar of an atomic property makes the property nonatomic."; SET severity = "WARNING"; }; @@ -149,7 +149,7 @@ DEFINE-CHECKER STRONG_DELEGATE_WARNING = { HOLDS-IN-NODE ObjCPropertyDecl; SET message = "Property or ivar %decl_name% declared strong"; - SET suggestion = "In general delegates should be declared weak or assign"; + SET suggestion = "In general delegates should be declared weak or assign."; };