File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ check_disallowed() {
133
133
dst_obj=$( obj_names " $symbol " " ${temp_dir} /${dst} _exports.txt" )
134
134
while read src_obj; do
135
135
if ! check_suppress " $src_obj " " $dst_obj " " $symbol " ; then
136
- echo " Error: $src_obj depends on $dst_obj symbol '$( c++filt " $symbol " ) ', can suppess with:"
136
+ echo " Error: $src_obj depends on $dst_obj symbol '$( c++filt " $symbol " ) ', can suppress with:"
137
137
echo " SUPPRESS[\" $src_obj $dst_obj $symbol \" ]=1"
138
138
result=1
139
139
fi
@@ -145,7 +145,7 @@ check_disallowed() {
145
145
# Declare array to track errors which were suppressed.
146
146
declare -A SUPPRESSED
147
147
148
- # Return whether error should be suppressed and record suppresssion in
148
+ # Return whether error should be suppressed and record suppression in
149
149
# SUPPRESSED array.
150
150
check_suppress () {
151
151
local src_obj=" $1 "
@@ -161,7 +161,7 @@ check_suppress() {
161
161
return 1
162
162
}
163
163
164
- # Warn about error which were supposed to be suppress , but were not encountered.
164
+ # Warn about error which were supposed to be suppressed , but were not encountered.
165
165
check_not_suppressed () {
166
166
for suppress in " ${! SUPPRESS[@]} " ; do
167
167
if [[ ! -v SUPPRESSED[$suppress ] ]]; then
You can’t perform that action at this time.
0 commit comments