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 5a5e2c1 commit 0bbd601Copy full SHA for 0bbd601
tools/verify-tables.sh
@@ -101,17 +101,17 @@ function checkForPunc() {
101
continue
102
fi
103
104
- # Anything less than 4 words we ignore
+ # Anything less than 5 words we ignore
105
count=$(echo "$col" | sed "s/(.*)//g" | sed "s/\[.*\]//g" | wc -w)
106
- if (( "$count" < 4 )); then
+ if (( "$count" < 5 )); then
107
108
109
110
if [[ "$col" == *". " || "$col" == *"? " ]]; then
111
112
113
114
- echo "$file - $1: column $colNum has more than 3 words and doesn't end with a '. |' or '? |' - watch for extra/missing spaces."
+ echo "$file - $1: column $colNum has more than 4 words and doesn't end with a '. |' or '? |' - watch for extra/missing spaces."
115
116
done
117
}
0 commit comments