aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-05-22 14:53:47 +0100
committerAleksey Kladov <[email protected]>2021-05-22 14:53:47 +0100
commit188b0f96f98feaa0771f941343887c46113c8ced (patch)
tree870d3afb3479ea9f0c323d7c539ce615ec4a4651 /xtask
parente6776c3e1b66c8946873d20e1e3bc1d743c952fe (diff)
Add more docs
Diffstat (limited to 'xtask')
-rw-r--r--xtask/src/tidy.rs13
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>>();