about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNathan Corbyn <me@nathancorbyn.com>2020-06-09 11:14:41 +0100
committerNathan Corbyn <me@nathancorbyn.com>2020-06-09 11:14:41 +0100
commit039da0b83242e76ce84424e34f2aa38844bcf0bf (patch)
tree9350d1daf6d7b87f5b38da81a8ebc494e8da6d46
parenta1eeaddf3f7aad9e82196d338613593e4e000762 (diff)
downloadrust-039da0b83242e76ce84424e34f2aa38844bcf0bf.tar.gz
rust-039da0b83242e76ce84424e34f2aa38844bcf0bf.zip
Update comments
-rw-r--r--src/librustc_error_codes/error_codes/E0583.md2
-rw-r--r--src/librustc_error_codes/error_codes/E0761.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_error_codes/error_codes/E0583.md b/src/librustc_error_codes/error_codes/E0583.md
index 2dcbbf88556..701900bb0cd 100644
--- a/src/librustc_error_codes/error_codes/E0583.md
+++ b/src/librustc_error_codes/error_codes/E0583.md
@@ -2,7 +2,7 @@ A file wasn't found for an out-of-line module.
 
 Erroneous code example:
 
-```ignore (compile_fail not working here; see Issue #43707)
+```compile_fail,E0583
 mod file_that_doesnt_exist; // error: file not found for module
 
 fn main() {}
diff --git a/src/librustc_error_codes/error_codes/E0761.md b/src/librustc_error_codes/error_codes/E0761.md
index e22ebcdc431..c01574e413c 100644
--- a/src/librustc_error_codes/error_codes/E0761.md
+++ b/src/librustc_error_codes/error_codes/E0761.md
@@ -14,7 +14,7 @@ fn foo() {}
 fn foo() {}
 ```
 
-```ignore (compile_fail not working here; see Issue #43707)
+```ignore (multiple source files required for compile_fail)
 mod ambiguous_module; // error: file for module `ambiguous_module`
                       // found at both ambiguous_module.rs and
                       // ambiguous_module.rs/mod.rs