diff --git a/Note-getting-started-developing-Rust.md b/Note-getting-started-developing-Rust.md index dcdc4d5..30f36a0 100644 --- a/Note-getting-started-developing-Rust.md +++ b/Note-getting-started-developing-Rust.md @@ -138,7 +138,7 @@ This will build and test the compiler, standard libraries, and supporting tools. If you are going to be hacking on the Rust compiler itself then it is recommended that you configure with `--disable-optimize`, since this will greatly reduce up your compilation time. -Note that some make targets are only exercised by `make check-full`. If you want to see what commands a make invocation is running, you can add `VERBOSE=1` to the argument list for make. (Also, if you use make options like `--print-database` to see other targets, note that some rules in the database are only generated dynamically.) +Note that some make targets are only exercised by `make check-full`. If you want to see what commands a make invocation is running, you can add `VERBOSE=1` to the argument list for make. (Also, if you use make options like `--print-data-base` to see other targets, note that some rules in the database are only generated dynamically.) ## Navigating