Skip to content

Commit 0346bcf

Browse files
committed
Rollup merge of #21994 - iKevinY:featureck-fix, r=brson
It seems that `lang_feature_stats` was supposed to refer to `language_feature_stats` instead. r? @brson
2 parents e15538d + 3df2fbe commit 0346bcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/etc/featureck.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@
194194
if not name in joint_features:
195195
print "error: feature '" + name + "' is both a lang and lib feature but not whitelisted"
196196
errors = True
197-
lang_status = lang_feature_stats[name][3]
197+
lang_status = language_feature_stats[name][3]
198198
lib_status = lib_feature_stats[name][3]
199-
lang_stable_since = lang_feature_stats[name][4]
199+
lang_stable_since = language_feature_stats[name][4]
200200
lib_stable_since = lib_feature_stats[name][4]
201201

202202
if lang_status != lib_status and lib_status != "deprecated":

0 commit comments

Comments
 (0)