diff --git a/sanityCheck.sh b/sanityCheck.sh
index 9a735796b2604eca6fef112f06a0e70077a771b3..e1f9d84c281d02b4474ceb9338a132cc70692ae7 100755
--- a/sanityCheck.sh
+++ b/sanityCheck.sh
@@ -116,7 +116,7 @@ $GREP 'elseif $ ' -- 'src/*'  | myprint "missing ; before statement"
 $GREP "[^]a-zA-Z0-9 \")}'+-\*\`] *>>" -- 'src/*' | myprint "StrangeCharacterAtEndOfCommand"
 # Check for a . inside a <<>>
 $GREP "<<[a-zA-Z]\([^\"'>]\|[^\"'>]>[^\"'>]\)*[a-zA-Z][.][^a-zA-Z]" | myprint "StrangeCharacterAfterDot"
-# Check for @@. instead of .@@
+# Check for @@.  instead of .@@ 
 $GREP -E "@@(\.|,|;|:)\s" -- src/*.tw | myprint "WrongSelectorPunctuation"
 $GREP "@@[a-z]\+;" -- 'src/*' | myprint "SelectorMissingDot"