File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ def filter_line(line):
250
250
os .path .join (
251
251
# We go back to `src`.
252
252
os .path .dirname (os .path .dirname (__file__ )),
253
- "tools/compiletest/src/command -list.rs" ,
253
+ "tools/compiletest/src/directive -list.rs" ,
254
254
),
255
255
"r" ,
256
256
encoding = "utf8"
File renamed without changes.
Original file line number Diff line number Diff line change @@ -709,11 +709,11 @@ fn line_directive<'line>(
709
709
Some ( DirectiveLine { line_number, revision, raw_directive } )
710
710
}
711
711
712
- // To prevent duplicating the list of commmands between `compiletest`,`htmldocck` and `jsondocck`,
712
+ // To prevent duplicating the list of directives between `compiletest`,`htmldocck` and `jsondocck`,
713
713
// we put it into a common file which is included in rust code and parsed here.
714
714
// FIXME: This setup is temporary until we figure out how to improve this situation.
715
715
// See <https://github.com/rust-lang/rust/issues/125813#issuecomment-2141953780>.
716
- include ! ( "command -list.rs" ) ;
716
+ include ! ( "directive -list.rs" ) ;
717
717
718
718
const KNOWN_HTMLDOCCK_DIRECTIVE_NAMES : & [ & str ] = & [
719
719
"count" ,
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ fn print_err(msg: &str, lineno: usize) {
123
123
124
124
// FIXME: This setup is temporary until we figure out how to improve this situation.
125
125
// See <https://github.com/rust-lang/rust/issues/125813#issuecomment-2141953780>.
126
- include ! ( concat!( env!( "CARGO_MANIFEST_DIR" ) , "/../compiletest/src/command -list.rs" ) ) ;
126
+ include ! ( concat!( env!( "CARGO_MANIFEST_DIR" ) , "/../compiletest/src/directive -list.rs" ) ) ;
127
127
128
128
/// Get a list of commands from a file. Does the work of ensuring the commands
129
129
/// are syntactically valid.
You can’t perform that action at this time.
0 commit comments