diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-22 14:54:13 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-22 14:54:13 +0100 |
commit | d56e52402eedbd738b5161cd1e5a8c152cb65e21 (patch) | |
tree | c88222888e201b2173cd4a15673bd879cb88dd95 /xtask | |
parent | 542337eca49986d785db2318bfe9c70809d4a229 (diff) | |
parent | 188b0f96f98feaa0771f941343887c46113c8ced (diff) |
Merge #8922
8922: Add more docs r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask')
-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>>(); |