diff options
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/tidy.rs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/xtask/src/tidy.rs b/xtask/src/tidy.rs index 6c55823eb..e31cc2a67 100644 --- a/xtask/src/tidy.rs +++ b/xtask/src/tidy.rs | |||
@@ -392,18 +392,7 @@ impl TidyDocs { | |||
392 | ) | 392 | ) |
393 | } | 393 | } |
394 | 394 | ||
395 | let poorly_documented = [ | 395 | let poorly_documented = ["hir_expand", "mbe", "parser", "hir_ty"]; |
396 | "hir", | ||
397 | "hir_expand", | ||
398 | "ide", | ||
399 | "mbe", | ||
400 | "parser", | ||
401 | "profile", | ||
402 | "project_model", | ||
403 | "syntax", | ||
404 | "tt", | ||
405 | "hir_ty", | ||
406 | ]; | ||
407 | 396 | ||
408 | let mut has_fixmes = | 397 | let mut has_fixmes = |
409 | poorly_documented.iter().map(|it| (*it, false)).collect::<HashMap<&str, bool>>(); | 398 | poorly_documented.iter().map(|it| (*it, false)).collect::<HashMap<&str, bool>>(); |