about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authoralef <alef@users.noreply.github.com>2023-12-20 17:05:56 +0100
committerGitHub <noreply@github.com>2023-12-20 17:05:56 +0100
commit821fddeba579aa18e61db26197eb9ebff50535be (patch)
tree3a385db737963a132ca07023769ac26787c9e8a0 /compiler/rustc_error_codes/src
parent8fca8295cb89c4ebae6b5a8f8cfef1fc870dbeaa (diff)
downloadrust-821fddeba579aa18e61db26197eb9ebff50535be.tar.gz
rust-821fddeba579aa18e61db26197eb9ebff50535be.zip
E0761: module directory has .rs suffix
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0761.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0761.md b/compiler/rustc_error_codes/src/error_codes/E0761.md
index 760c5897698..975f967d0e1 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0761.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0761.md
@@ -15,7 +15,7 @@ fn foo() {}
 
 mod ambiguous_module; // error: file for module `ambiguous_module`
                       // found at both ambiguous_module.rs and
-                      // ambiguous_module.rs/mod.rs
+                      // ambiguous_module/mod.rs
 ```
 
 Please remove this ambiguity by deleting/renaming one of the candidate files.